array get first 10 elements 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 slice array
const FRUITS = ["Banana", "Orange", "Lemon", "Apple", "Mango"];
var citrus = FRUITS.slice(1, 3);
var fromTheEnd = FRUITS.slice(-3, -1);
Example 3: javascript get sub array
var fruits = ["Banana", "Orange", "Lemon", "Apple", "Mango"];
var citrus = fruits.slice(1, 3);
Example 4: first n elements of array js
const sliced_array = unsliced_array.slice(0, n);
Example 5: javascript get first element of array
alert($(ary).first());
Example 6: javascript get first element of array
alert(ary[0])