JavaScript bitwise NOT vs Math.floor()
JavaScript performance comparison
Info
Simple test to check the difference in performance of JavaScript Math.floor() vs double bitwise NOT operator: ~~.
More info here: http://rocha.la/JavaScript-bitwise-operators-in-practice
Preparation code
<script>
Benchmark.prototype.setup = function() {
var numbers = [];
//generate amount random numbers
for (var i = 0; i < 100000; i++) {
numbers[numbers.length] = Math.floor(Math.random()*100000)/10000;
}
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
Math.floor() |
|
pending… |
bitwise NOT |
|
pending… |
<<0 |
|
pending… |
| 0 |
|
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:
- Revision 1: published by rochal
- Revision 2: published
- Revision 3: published
- Revision 5: published
- Revision 6: published
- Revision 7: published
- Revision 8: published by Cong Liu
0 comments