Question 41 of 5279%
41

What will be the output of code?

const obj = {
  1: 1,
  2: 2,
  3: 3
};
console.log(Object.keys(obj) == Object.values(obj)); 
41/52