Last active
July 7, 2017 21:33
-
-
Save cdaz5/068378fe1c7ef2e27c577fe174c627de to your computer and use it in GitHub Desktop.
Javascript Pass by Value Example
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 a = 5 | |
| let b = a | |
| console.log(a) // => 5 | |
| console.log(b) // => 5 | |
| a = 1 | |
| console.log(a) // => 1 | |
| console.log(b) // => 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment