array get first index of array javascript code example
Example 1: javascript get first element of array
alert($(ary).first());
Example 2: javascript get first element of array
console.log(ary[0]);
alert($(ary).first());
console.log(ary[0]);