Created
December 14, 2014 00:35
-
-
Save topicus/738af63279cd5dc9b9af 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
| // mycoolscript.js | |
| var hola = 'hola'; | |
| console.log(window.hola); //prints 'hola' | |
| // myapp.js | |
| var hola = 'mundo'; | |
| console.log(window.hola); //prints 'mundo' | |
| //mycoolscript.js line:655 | |
| console.log(hola.split('')); //prints ["m", "u", "n", "d", "o"] instead ["h", "o", "l", "a"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment