Last active
July 17, 2019 03:56
-
-
Save AliN11/1804c1bc7c7e8d6298caff3495a8689b to your computer and use it in GitHub Desktop.
This file contains 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 name1 = "John"; | |
let name2 = name1; | |
console.log(name1); // John | |
console.log(name2); // John | |
name1 = "Paolo"; | |
console.log(name1); // Paolo | |
console.log(name2); // John | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment