create
File Location
javascript-library
└── 0-PreWork
└── 1-Fundamentals
└── 11-Objects
01-properties.js
02-enumeration.js
03-initializers.js
04-constructor-function.js
05-create.js <----You will be working in this file.Object.create
var paul = {
name: "Paul",
age: 41
};
var sophie = Object.create(paul);
var ava = Object.create(paul);Practice
Last updated