javascript select first n elements of array 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)
Example 2: first N elements of an array javascript
const slicedArray = array.slice(0, n);
Example 3: javascript get first element of array
let mylist = ['one','two','three','last']
mylist[0],mylist[1],mylist[2],mylist[3]
Example 4: javascript find first element of array
let array = ["a", "b", "c", "d", "e"];
let [first1] = array;
let first2 = array[0];