Skip to content

Instantly share code, notes, and snippets.

@K-Vishwak
Created March 5, 2022 14:19
Show Gist options
  • Save K-Vishwak/4178cf36cafe671f16fcc46a2f772ee0 to your computer and use it in GitHub Desktop.
Save K-Vishwak/4178cf36cafe671f16fcc46a2f772ee0 to your computer and use it in GitHub Desktop.
"use strict";
const obj = {};
Object.defineProperty(obj, "a", {value:10, writable:false});
obj.a = 20;
console.log(obj.a);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment