Comparing strings in a case insensitive manner means to compare them without taking care of the uppercase and lowercase letters . To perform this operation the most preferred method is to use either toUpperCase() or toLowerCase() function.
What is case insensitive in JavaScript?
Comparing strings in a case insensitive manner means to compare them without taking care of the uppercase and lowercase letters . To perform this operation the most preferred method is to use either toUpperCase() or toLowerCase() function.