Skip to content

Instantly share code, notes, and snippets.

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 Mayankgupta688/d4774188752ba32d82b04797935a73db to your computer and use it in GitHub Desktop.
Save Mayankgupta688/d4774188752ba32d82b04797935a73db to your computer and use it in GitHub Desktop.
var userInfo = {
name: "Mayank",
age: 30,
salary: 10000,
designation: "Developer"
getData: function() {
alert(this.name);
}
}
var newObject = Object.create(userInfo);
newObject.getData();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment