Question 88 of 10088%
88

What will be the output of code?

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