Question 85 of 10085%
85

What will be the output of code?

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