Increment an integer (with assignment) (v3)

Revision 3 of this benchmark created by GromNaN on


Test runner

Ready to run.

Testing in
TestOps/sec
i++
var i = 0, j;
i++;
j = i;
 
ready
++i
var i = 0, j;
++i;
j = i;
ready

Revisions

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

  • Revision 1: published by MathRobin on
  • Revision 2: published by capiainemousse on
  • Revision 3: published by GromNaN on
  • Revision 4: published by Jayr Magave on
  • Revision 5: published on