Function EqualityWhat gets logged when we test the following equality scenarios? const a = c => c; const b = c => c; console.log(a == b); console.log(a(7) === b(7)); Select one:true truetrue falsefalse truefalse falseSubmit