Object Property Equalitya and b are different objects with the same firstName property. Are these properties strictly equal to each other? const a = { firstName: 'Bill' }; const b = { firstName: 'Bill' }; console.log(a.firstName === b.firstName); Select one:truefalseSubmit