Skip to content

Instantly share code, notes, and snippets.

@rcdexta
Last active March 28, 2019 03:06
Show Gist options
  • Select an option

  • Save rcdexta/16d2169d134c3371b208924818e77968 to your computer and use it in GitHub Desktop.

Select an option

Save rcdexta/16d2169d134c3371b208924818e77968 to your computer and use it in GitHub Desktop.
reversing array
const array = ['a', 'b', 'c']
console.log(_.reverse(array)) // output: ['c', 'b', 'a']
// Native
const array = ['a', 'b', 'c']
array.reverse()
console.log(array) // output: ['c', 'b', 'a']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment