Skip to content

Instantly share code, notes, and snippets.

@wojtrawi
Created August 26, 2023 10:57
Show Gist options
  • Save wojtrawi/dfeb61fb5c179c8a13775a6aa7637d2b to your computer and use it in GitHub Desktop.
Save wojtrawi/dfeb61fb5c179c8a13775a6aa7637d2b to your computer and use it in GitHub Desktop.
const cars = ['Ford Mustang', 'BMW M5', 'Porsche 911'];
cars[1] = 'Mercedes AMG GT R';
console.log(cars);
// ['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