The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present.
Example:
var a = 'myString';
var b = a.indexOf('Str');
console.log(b) // 2
var c = a.indexOf('str');
console.log(c) // -1 , because JS case sensitive
Ввійдіть щоб вподобати
Ввійдіть щоб прокоментувати