get first 5 elements of 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)
Example 2: javascript get first element of array
let array = [1,2,3]
array[0]
Example 3: first n elements of array js
const sliced_array = unsliced_array.slice(0, n);
Example 4: array index javascript show only first 2 elements
array.slice(0, n);
Example 5: javascript get first element of array
let mylist = ['one','two','three','last'];
mylist[0],mylist[1],mylist[2],mylist[3];
Example 6: javascript get first element of array
let mylist = ['one','two','three','last']
mylist[0],mylist[1],mylist[2],mylist[3]