Skip to content

Instantly share code, notes, and snippets.

@wojtrawi
Created July 31, 2018 19:08
Show Gist options
  • Save wojtrawi/39d4264bbe7ef8d883b59e9793911ae9 to your computer and use it in GitHub Desktop.
Save wojtrawi/39d4264bbe7ef8d883b59e9793911ae9 to your computer and use it in GitHub Desktop.
const cars = [
'Aston Martin',
'Ferrari',
'Porsche'
];
const carsReversed = [...cars].sort(() => 1);
console.log(`My cars: ${cars}`);
console.log(`My cars reversed: ${carsReversed}`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment