What will be printed when executing the following code?
const obj = { a: 1, b: 2 }; console.log(Object.keys(obj).length);
undefined
3
2
1