typeof number vs isFinite vs NaN

JavaScript performance comparison

Revision 2 of this test case created

Preparation code

 
<script>
Benchmark.prototype.setup = function() {
    var n = 100;
    function isNumber(ukn) {
       return 'number' != typeof ukn;
    }
   
};
</script>

Test runner

Warning! For accurate results, please disable Firebug before running the tests. (Why?)

Java applet disabled.

Testing in unknown unknown
Test Ops/sec
typeof
var ok = 'number' === typeof n;
pending…
isFinite
var ok = isFinite(n);
pending…
!isNaN
var ok = !isNaN(n);
pending…
typeof ==
var ok = 'number' == typeof n;
pending…
isNumber
var ok = isNumber(n);
pending…

Compare results of other browsers

Revisions

You can edit these tests or add even more tests to this page by appending /edit to the URL. Here’s a list of current revisions for this page:

0 comments

Add a comment