Skip to content

Instantly share code, notes, and snippets.

@ppraksa
Created July 22, 2019 12:30
Show Gist options
  • Save ppraksa/7c363bd4b5b5bed66eea4f97fd06226a to your computer and use it in GitHub Desktop.
Save ppraksa/7c363bd4b5b5bed66eea4f97fd06226a to your computer and use it in GitHub Desktop.
simple const implementation
function Constans(arg, value) {
return Object.defineProperty(this, arg, {
value: value,
writable: false
});
}
Constans('test', 2);
test; //2
test = 3;
test; // still 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment