variable vs true

JavaScript performance comparison

Test case created by ThinkingStiff

Preparation code

 
<script>
Benchmark.prototype.setup = function() {
    var t = true;
    function check( value ){ return value; };
   
   
   
};
</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
variable
var x = t;
if( t ) x = t;
if( !t ) x = !t;
x = check( t );
 
pending…
true
var x = true;
if( true ) x = true;
if( !true ) x = !true;
x = check( true );
 
pending…

You can edit these tests or add even more tests to this page by appending /edit to the URL.

Compare results of other browsers

0 comments

Add a comment