//Inheritance using Object.create
let inhertitedObject = Object.create(obj1);
Object.defineProperty(inhertitedObject, "titleFunc", {
value: function () {
return this.name + " resigned from job";
},
writable: false,
enumerable: false,
configurable: false,
});
console.log(inhertitedObject.titleFunc());