copy array to another array js code example
Example 1: assign array to another array javascript
var ar = ["apple","banana","canaple"];
var bar = Array.from(ar);
alert(bar[1]); // alerts 'banana'
// Notes: this is for in In ES6, works for an object of arrays too!
Example 2: javascript copy array
var numbers = [1,2,3,4,5];
var newNumbers = Object.assign([], numbers);
Example 3: how store array in another array js
how store array in another array js