Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

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']
 
PREVIOUS NEXT
Tagged: #items #array #javascript
ADD COMMENT
Topic
Name
7+3 =