Prototype & Prototypal Inheritance

What happens to parent.parentProp after the last line?
const parent = { parentProp: 'parent value' };
const child = Object.create(parent);
child.childProp = 'child value';
child.parentProp = 'overridden value';
Next Question (19/22)