Skip to content

Instantly share code, notes, and snippets.

@wojtrawi
Created August 26, 2023 10:51
Show Gist options
  • Save wojtrawi/1e556fe2415bba1f45616e1728be325b to your computer and use it in GitHub Desktop.
Save wojtrawi/1e556fe2415bba1f45616e1728be325b to your computer and use it in GitHub Desktop.
const cars = ['Ford Mustang', 'BMW M5', 'Porsche 911'];
const splicedCars = cars.slice();
splicedCars.splice(1, 1);
console.log(cars);
// ['Ford Mustang', 'BMW M5', 'Porsche 911']
console.log(splicedCars);
// ["Ford Mustang", "Porsche 911"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment