pull the first element of an array javascript code example
Example 1: get first 10 items of array javascript
const list = ['apple', 'banana', 'orange', 'strawberry']
const size = 3
const items = list.slice(0, size) // res: ['apple', 'banana', 'orange']
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
*/