Skip to content

Instantly share code, notes, and snippets.

@K-Vishwak
Created March 5, 2022 14:21
Show Gist options
  • Save K-Vishwak/f369128deb1e0f342eb03b6e13208a21 to your computer and use it in GitHub Desktop.
Save K-Vishwak/f369128deb1e0f342eb03b6e13208a21 to your computer and use it in GitHub Desktop.
"use strict";
const obj = {};
Object.defineProperty(obj, "a", {value:10, writable:true});
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