Live data from Hacker News

Viewing profile — some-1

some-1

HN member
Joined
Sun, Sep 16, 2012, 9:58 PM UTC
HN karma
3
Public activity
4 items

About some-1

No profile information was provided.

Recent public activity

  1. comment
    Comment #4566618

    No, the correct way is to use the global function isNaN(x);

  2. comment
    Comment #4531799

    See the following comment: http://news.ycombinator.com/item?id=4530557 The reason why some of them is so fast is because the constant expression is evaluated to a constant, so inst…

  3. comment
    Comment #4530606

    -0+'12' (and 0+'12') doesn't convert it to a number, it converts the zero to a string and then concatenate them to the string "012". And Firefox optimize it: Function('return -0+"1…

  4. comment
    Comment #4530557

    The reason why the wicked is so fast in Firefox is because of the literal string and the optimizations done by the compiler. Try this (creates a function and then show the source):…