Prototype & Prototypal Inheritance

What is the difference between accessing a property using 'in' operator versus hasOwnProperty()?
const parent = { value: 42 };
const child = Object.create(parent);
Next Question (6/22)