Skip to content

Instantly share code, notes, and snippets.

@ramazankanbur
Last active November 10, 2019 16:02
Show Gist options
  • Save ramazankanbur/a7003c3631254a2c77b0a638a022b12e to your computer and use it in GitHub Desktop.
Save ramazankanbur/a7003c3631254a2c77b0a638a022b12e to your computer and use it in GitHub Desktop.
Object.defineProperty(typeof global === "object" ? global : window, "e", {
value: 2.7182,
enumerable: true,
writable: false,
configurable: false
})
console.log(e > 3);
//output
false
e = 2;
console.log(e);
//output
2.7182
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment