Question 44 of 5285%
44

What will be the output of code?

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