array contains case insensitive javascript
var array = ['I', 'hAve', 'theSe', 'ITEMs'],
query = 'these',
result = array.findIndex(item => query.toLowerCase() === item.toLowerCase());
console.log(result); // 2
array contains case insensitive javascript
var array = ['I', 'hAve', 'theSe', 'ITEMs'],
query = 'these',
result = array.findIndex(item => query.toLowerCase() === item.toLowerCase());
console.log(result); // 2
Javascript case insensitive string comparison
var name1 = "Taylor Johnson";
var name2 ="taylor johnson";
//convert to lowercase for case insensitive comparison
if(name1.toLowerCase() === name2.toLowerCase()){
//names are the same
}
javascript includes case insensitive
stringtodetect.toLowerCase().includes("stringtocompare");
// OR, Alternatively...
stringtodetect.toLowerCase().includes(variable.toLowerCase());
js includes case insensitive
var passedinstring = localStorage.getItem("passedinstring").toLowerCase();
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us