var myArray = ["one", "two", "three"]; var cloneArray = myArray.slice(); myArray.splice(1, 1); console.log(myArray); console.log(cloneArray);