Hacker News new | ask | show | jobs
by jarel 4998 days ago
> You would opt into macrology redefining == to be === or whatever you want.

Oh, please let the syntax for this be something like

  let == = ===;
:-P
1 comments

Let's not run an extra let statement if we don't have to!

    if (== != === || == !== ===)
      let == = ===;
Shouldn't that be var to get the right scope?