get first element js code example

Example 1: javascript get first element of array

let array = [1,2,3] // makes your array
array[0] // returns first element of your array.

Example 2: get first element of array javascript

// Method - 1 ([] operator)
var arr = [1, 2, 3, 4, 5];
var first = arr[0];
console.log(first);
/*
    Output: 1
*/

// Method - 2 (Array.prototype.shift())
var arr = [1, 2, 3, 4, 5];
var first = arr.slice(0, 1).shift();
console.log(first);
/*
    Output: 1
*/

// Method - 3 (Destructuring Assignment)
var arr = [1, 2, 3, 4, 5];
const [first] = arr;
console.log(first);
/*
    Output: 1
*/

Example 3: javascript get 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];

Example 4: js get first item from array

var colors = ["red", "green", "blue"];
var red=colors.shift();
//colors is now ["green","blue"];

Example 5: javascript get first element of array

alert(ary[0])

Tags:

Php Example