Created
March 24, 2018 21:27
-
-
Save r37r0m0d3l/8bfb1f4b904b4c7ae0bb8a73eeffce7f to your computer and use it in GitHub Desktop.
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
| let param1 = 1; | |
| let param2 = 2; | |
| //swap and assign param1 & param2 each others values | |
| [param1, param2] = [param2, param1]; | |
| console.log(param1) // 2 | |
| console.log(param2) // 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment