Skip to content

Instantly share code, notes, and snippets.

@bitfishxyz
Created January 30, 2019 14:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitfishxyz/262704c6533ba1df49c78369fc371d7c to your computer and use it in GitHub Desktop.
Save bitfishxyz/262704c6533ba1df49c78369fc371d7c to your computer and use it in GitHub Desktop.
let obj = {
a: 1
}
Object.defineProperty(obj, 'a', {
configurable: false
})
obj.a = 3
console.log(obj.a) // 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment