Created
August 26, 2023 10:40
-
-
Save wojtrawi/8fd62282e488018948e46451fb643be3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const cars = ['Ford Mustang', 'BMW M5', 'Porsche 911']; | |
const sortedCars = cars.toSorted(); | |
console.log(cars); | |
// ["Ford Mustang", "BMW M5", "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