Answers for "js take first 10"

20

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

return last two values of array in javascript

arr.slice(Math.max(arr.length - 5, 1))
Posted by: Guest on March-01-2020

Code answers related to "js take first 10"

Code answers related to "Javascript"

Browse Popular Code Answers by Language