Last active
March 28, 2019 03:06
-
-
Save rcdexta/16d2169d134c3371b208924818e77968 to your computer and use it in GitHub Desktop.
reversing array
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 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