how to copy a array to another array in javascript code example
Example 1: 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);
Example 2: how store array in another array js
how store array in another array js
Example 3: how to copy one array to another in javascript
const type1 = [true, 1, "true"];
const type2 = [[], {}];
const type3 = [function () {}, function () {}];