can slice be used on an array javascript code example
Example: js copy part of array
// The slice function copies parts of an array and
// do therefore not change the default array
let arr = ["apple", "kiwi", "banana", "pear"];
let newArray = arr.slice(1, 2)
console.log(newArray); // output : kiwi