Predict the output.
const proto = { a: 1 } const obj = Object.create(proto) console.log("a" in obj, Object.prototype.hasOwnProperty.call(obj, "a"))