Skip to content

Instantly share code, notes, and snippets.

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