Equality and Identity Operatorsa and b are two constants. What will be the output on the console? const a = '42'; const b = 42; console.log((a == b) && (a === b)); Select one:truefalseSubmit