Answers for "get only first two elements of array javascript"

34

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']
Posted by: Guest on March-30-2020
1

first N elements of an array javascript

const slicedArray = array.slice(0, n);
Posted by: Guest on May-17-2021
0

how to show only few first elements of array js

const longArray = [1, 2, 3, 4, 5, 6, 7]
// to show only first 4 elements
const shortArray = longArray.slice(0,4) // slice(startIndex, numberOfSteps)

console.log(longArray) // [1, 2, 3, 4, 5, 6, 7]
console.log(shortArray) // [1, 2, 3, 4]
Posted by: Guest on May-23-2022

Code answers related to "get only first two elements of array javascript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language