Copy all content of an array to another array with using slice code example
Example 1: javascript copy an array
let arr =["a","b","c"];
const copy = [...arr];
const copy = Array.from(arr);
Example 2: assign array to another array javascript
var ar = ["apple","banana","canaple"];
var bar = Array.from(ar);
alert(bar[1]);
Example 3: copy one array to another javascript
var fruit = ["apple", "banana", "fig"];
console.log(fruit);
var fruit2 = fruit.slice();
console.log(fruit2);
var fruit3 = fruit.slice(0,2);
console.log(fruit3);