Question 50 of 5886%
50

What will be the output of code?

const a = {
  firstName: 'Bill'
};
const b = {
  firstName: 'Bill'
};
console.log(a.firstName === b.firstName);  
50/58