Skip to content

Instantly share code, notes, and snippets.

@BolajiAyodeji
Created March 10, 2019 18:56
Show Gist options
  • Save BolajiAyodeji/a6b43032adb5dab84361a3437ed9e977 to your computer and use it in GitHub Desktop.
Save BolajiAyodeji/a6b43032adb5dab84361a3437ed9e977 to your computer and use it in GitHub Desktop.
let user = {
name: "Bolaji"
};
let descriptor = Object.getOwnPropertyDescriptor(user, 'name');
console.log(descriptor);
// {value: "Bolaji", writable: true, enumerable: true, configurable: true}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment