`Object.create({});`
Object.create(Object.create(Object.prototype));
`Object.create(Object.prototype);``prototype``Object.prototype``Object.create({});``prototype``{}``{}``prototype``Object.prototype`
a = {};
b = Object.create(Object.prototype);
a.isPrototypeOf(b); // false
Object.prototype.isPrototypeOf(b); // true
b = Object.create(a);
a.isPrototypeOf(b); // true
Object.prototype.isPrototypeOf(b); // true