Answers for "unqiey array with case insesitive js"

1

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
Posted by: Guest on April-01-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language