Home | Mailing List | Blog | Tutorial Videos

Function Equality

What 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: