What does the following code print?
const obj = { a: 1, b: 2, c: 3 }; console.log(Object.keys(obj).includes('b'));
undefined
false
null
true