return array index javascript code example
Example 1: get index of element in array js
const beasts = ['ant', 'bison', 'camel', 'duck', 'bison'];
console.log(beasts.indexOf('bison'));
console.log(beasts.indexOf('bison', 2));
console.log(beasts.indexOf('giraffe'));
Example 2: js array get index
var fruits = ["Banana", "Orange", "Apple", "Mango"];
return fruits.indexOf("Apple");
Example 3: get array by array of indices js
var resultArr = indexArr.map(i => fruitier[i])
Example 4: access index of array javascript
let first = fruits[0]
let last = fruits[fruits.length - 1]