array.clone code example
Example 1: how to make a copy of an array java
int a[] = {1, 8, 3};
// Copy elements of a[] to b[]
int b[] = a.clone();
Example 2: js clone array
var clone = myArray.slice(0);
Example 3: js array clone
let clone = [...myArray]
Example 4: javascript duplicate an array
let arr =["a","b","c"];
// ES6 way
const duplicate = [...arr];
// older method
const duplicate = Array.from(arr);