n = n + 1 or n++
JavaScript performance comparison
Preparation code
<script type="text/javascript">
var n = 0;
</script>
<script>
Benchmark.prototype.teardown = function() {
console.log(n);
};
</script>
Test runner
Warning! For accurate results, please disable Firebug before running the tests. (Why?)
Java applet disabled.
| Test | Ops/sec | |
|---|---|---|
n = n + 1 |
|
pending… |
n++ |
|
pending… |
++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:
- Revision 1: published by Mathieu Hautenauve
- Revision 2: published by tyareg
- Revision 3: published
- Revision 4: published by Mathieu Hautenauve
- Revision 7: published
- Revision 8: published by Andymensional
0 comments