Division vs multiplication
JavaScript performance comparison
Preparation code
<script>
Benchmark.prototype.setup = function() {
var foo = [];
for (var x = 0; x < 1000; ++ x )
foo.push( Math.random( ) );
var y = 54.323;
var y_inv = 1 / y;
var i = 0;
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
x / y |
|
pending… |
x * inv |
|
pending… |
You can edit these tests or add even more tests to this page by appending /edit to the URL.
0 comments