Last active
July 8, 2018 15:12
-
-
Save gengns/e5ab737c0698ac7d0a1ccd23d34a1e3f to your computer and use it in GitHub Desktop.
Swap the first and last element in an array without temporary variable or ES6 swap method [a, b] = [b, a]
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
[a.pop(), ...a.slice(1), a.shift()] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment