Skip to content

Instantly share code, notes, and snippets.

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