xxxxxxxxxx
arr.some(x => x.toLowerCase() == lookup.toLowerCase())
xxxxxxxxxx
var array = ['I', 'hAve', 'theSe', 'ITEMs'],
query = 'these',
result = array.findIndex(item => query.toLowerCase() === item.toLowerCase());
console.log(result); // 2