Skip to content

Instantly share code, notes, and snippets.

@wojtrawi
Created August 26, 2023 10:28
Show Gist options
  • Save wojtrawi/7600f47d2e51ee992822aa423e71e66a to your computer and use it in GitHub Desktop.
Save wojtrawi/7600f47d2e51ee992822aa423e71e66a to your computer and use it in GitHub Desktop.
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