how to find first element of array javascript code example
Example 1: how to display first value of an array in jquery
alert(ary[0]);
Example 2: javascript find first element of array
let array = ["a", "b", "c", "d", "e"];
// Both first1 and first2 have the same value.
let [first1] = array;
let first2 = array[0];