If you want to clone just the array object container just use slice:
const a = [1,2,3,4]; const b = a.slice(0); // another array object containing the same content