object.assign clone array code example
Example 1: deep clone array in javascript
const numbers = [1, [2], [3, [4]], 5];
// Using JavaScript
JSON.parse(JSON.stringify(numbers));
// Using Lodash
_.cloneDeep(numbers);
Example 2: copy object 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!
// (May not be applicable for deep-copy situations?)