Skip to content

Instantly share code, notes, and snippets.

@wojtrawi
Created August 26, 2023 10:54
Show Gist options
  • Save wojtrawi/eeca5e82c755cf799cdba774343a0409 to your computer and use it in GitHub Desktop.
Save wojtrawi/eeca5e82c755cf799cdba774343a0409 to your computer and use it in GitHub Desktop.
const cars = ['Ford Mustang', 'BMW M5', 'Porsche 911'];
const splicedCars = cars.toSpliced(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