slice() array of arrays javascript code example
Example 1: javascript slice array
// array.slice(start, end)
const FRUITS = ["Banana", "Orange", "Lemon", "Apple", "Mango"];
var citrus = FRUITS.slice(1, 3);
// citrus => [ 'Orange', 'Lemon' ]
// Negative values slice in the opposite direction
var fromTheEnd = FRUITS.slice(-3, -1);
// fromTheEnd => [ 'Lemon', 'Apple' ]
Example 2: Copy the first two array elements to the last two array elements
var fruits = ["Banana", "Orange", "Apple", "Mango"];
fruits.copyWithin(2, 0);