js get element from array by index 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 item in array from index
var valueAtIndex1 = myValues[1];
Example 4: access index of array javascript
let first = fruits[0]
let last = fruits[fruits.length - 1]