Megadja obj prototípus-objektumát.
Object.getPrototypeOf(obj)
const prototype1 = {} const object1 = Object.create(prototype1) console.log(Object.getPrototypeOf(object1) === prototype1) // Expected output: true