get one element in array javascript code example
Example 1: array find
const array1 = [5, 12, 8, 130, 44];
const found = array1.find(element => element > 10);
console.log(found);
// expected output: 12
Example 2: javascript get first element of array
console.log(ary[0]);
Example 3: javascript get first element of array
alert(ary[0])