copy array elements to another array javascript code example
Example 1: assign array to another array javascript
var ar = ["apple","banana","canaple"];
var bar = Array.from(ar);
alert(bar[1]);
Example 2: 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 3: js copy array into another
var destinationArray = Array.from(sourceArray);
Example 4: javascript copy array
var oldColors=["red","green","blue"];
var newColors = oldColors.slice();
Example 5: how store array in another array js
how store array in another array js