Skip to content

Instantly share code, notes, and snippets.

@wojtrawi
Created August 26, 2023 11:04
Show Gist options
  • Save wojtrawi/2ca2ae7cc82745a1ec7924f0b9b13a42 to your computer and use it in GitHub Desktop.
Save wojtrawi/2ca2ae7cc82745a1ec7924f0b9b13a42 to your computer and use it in GitHub Desktop.
const cars = ['Ford Mustang', 'BMW M5', 'Porsche 911'];
const updatedCars = cars.with(1, 'Mercedes AMG GT R');
console.log(cars);
// ['Ford Mustang', 'BMW M5', 'Porsche 911']
console.log(updatedCars);
// ['Ford Mustang', 'Mercedes AMG GT R', 'Porsche 911']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment