Skip to content

Instantly share code, notes, and snippets.

@gilbertoquinteroA
Created July 20, 2018 03:36
Show Gist options
  • Save gilbertoquinteroA/68396bed50653de78424d0cb141c72b2 to your computer and use it in GitHub Desktop.
Save gilbertoquinteroA/68396bed50653de78424d0cb141c72b2 to your computer and use it in GitHub Desktop.
/**
* ejemplo 1
*/
console.log(x === undefined); // true
var x = 3;
console.log(x ===undefined);
/**
* ejemplo 2
*/
var mivariable = 'mi valor';
(function() {
console.log(mivariable); // undefined
var myvar = 'valor local';
console.log(mivariable);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment