Skip to content

Instantly share code, notes, and snippets.

@topicus
Created December 14, 2014 00:35
Show Gist options
  • Select an option

  • Save topicus/738af63279cd5dc9b9af to your computer and use it in GitHub Desktop.

Select an option

Save topicus/738af63279cd5dc9b9af to your computer and use it in GitHub Desktop.
// 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