NaN === NaN // false
Number.MIN_VALUE> 0;
// true? really? wtf.
// It turns out that MIN_VALUE is the smallest number
// GREATER THAN ZERO, which of course totally makes sense.
parseInt('06'); // 6
parseInt('08'); // 0
// remember to pass in the radix!
typeof null // object
null === Object // false
(x=[].reverse)() === window // true
NaN === 'number' // true
Infinity === 1/0 // true
0.1 + 0.2 === 0.3 // false
("foo" + + "bar") === "fooNaN" // true
alert(111111111111111111111); // alerts 111111111111111110000
Ajaxian에 재미있는 포스트가 올라왔네요. 요즘 트위터에 한창 떠들던 얘기가 이거였군요. Brian Leroux씨는 자바스크립트의 엿(?) 같은 실행 결과가 담긴 코드들을 취합한 wtfjs.com을 오픈했습니다. ㅋㅋㅋ