Skip to content

Instantly share code, notes, and snippets.

@luisenriquecorona
Created July 21, 2019 05:38
Show Gist options
  • Save luisenriquecorona/fac56b4e26e1c9ea3a94df94919afb9a to your computer and use it in GitHub Desktop.
Save luisenriquecorona/fac56b4e26e1c9ea3a94df94919afb9a to your computer and use it in GitHub Desktop.
In a browser
// in a browser
var RegExp = "Hello!";
console.log(window.RegExp); // "Hello!"
var ncz = "Hi!";
console.log(window.ncz); // "Hi!"
// in a browser
let RegExp = "Hello!";
console.log(RegExp); // "Hello!"
console.log(window.RegExp === RegExp); // false
const ncz = "Hi!";
console.log(ncz); // "Hi!"
console.log("ncz" in window); // false
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment