first n elements of array js

JavaScript
const list = ['apple', 'banana', 'orange', 'strawberry']
const size = 3
const items = list.slice(0, size) // res: ['apple', 'banana', 'orange']const sliced_array = unsliced_array.slice(0, n);
Source

Also in JavaScript: