Which values can be case-sensitive?

Text or typed input that is sensitive to capitalization of letters . For example, “Computer” and “computer” are two different words because the “C” is uppercase in the first example and lowercase in the second example. On modern systems, passwords are case-sensitive, and usernames are usually case-sensitive as well.

Read more

Does string include case-sensitive?

Both String#includes() and String#indexOf() are case sensitive . Neither function supports regular expressions. To do case insensitive search, you can use regular expressions and the String#match() function, or you can convert both the string and substring to lower case using the String#toLowerCase() function.16 May 2019

Read more