Hacker News new | ask | show | jobs
by Tarang 4634 days ago
Interesting, I would have never thought the js interpreter would interpret both as being === even though the two functions are different.
1 comments

The two functions are different, but their return values are identical. The === is comparing the return values.

Consider this example:

  function onePlusOne() { return 1 + 1; }
  function two() { return 2; }

  alert( onePlusOne === two );  // false, not the same function
  alert( onePlusOne() === two() );  // true, same value