Viewing profile — some-1
some-1
HN member- Joined
- Sun, Sep 16, 2012, 9:58 PM UTC
- HN karma
- 3
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About some-1
No profile information was provided.
Recent public activity
-
comment
Comment #4566618
No, the correct way is to use the global function isNaN(x);
-
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…
-
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…
-
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):…