Created
August 26, 2023 10:28
-
-
Save wojtrawi/7600f47d2e51ee992822aa423e71e66a 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 reversedCars = cars.toReversed(); | |
console.log(cars); | |
// ["Ford Mustang", "BMW M5", "Porsche 911"] | |
console.log(reversedCars); | |
// ["Porsche 911", "BMW M5", "Ford Mustang"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment