copy from 3 item of the array untile the end javascript code example
Example 1: javascript copy array
var oldColors=["red","green","blue"];
var newColors = oldColors.slice();
Example 2: array.slice
const animals = ['ant', 'bison', 'camel', 'duck', 'elephant'];
console.log(animals.slice(2));
console.log(animals.slice(2, 4));
console.log(animals.slice(1, 5));
Example 3: js slice
const str = 'The quick brown fox jumps over the lazy dog.';
console.log(str.slice(31));
console.log(str.slice(4, 19));
console.log(str.slice(-4));
console.log(str.slice(-9, -5));