Skip to content

Instantly share code, notes, and snippets.

@Frodigo
Created September 8, 2021 06:39
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 Frodigo/fa07d62cd998563fbf2b256929271316 to your computer and use it in GitHub Desktop.
Save Frodigo/fa07d62cd998563fbf2b256929271316 to your computer and use it in GitHub Desktop.
Obj create
var Employee = {
company: 'xyz'
}
var emp1 = Object.create(Employee);
delete emp1.company
console.log(emp1.company);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment