Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JS Bin</title>
</head>
<body>
</body>
</html>
 
var result = (function() {
  // NaN (Not a Number) is at an undefined state without context so it does not equal to itself.
  // Also if two things are not numbers then does that necessarily mean that they should equal each other? For example:
console.log(parseInt("a") === parseInt("b")); // false
  
  return NaN === NaN
})();
console.log(result); // false
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
miguelmotapro
0viewers