Number() vs parseInt() vs plus vs bitwise (v27)

Revision 27 of this benchmark created on


Test runner

Ready to run.

Testing in
TestOps/sec
Number Constructor
Number("13268");
ready
parseInt
parseInt("13268");
ready
Plus operator
+"13268";
ready
Bitwise >> (right shift)
"13268" >> 0;
ready
Multiply (force cast)
"13268" * 1;
ready
Bitwise NOT
~~"13268";
ready
parseInt with base argument
parseInt("13268", 10);
ready
Bitwise OR
"13268" | 0
ready
minus 0
"13268" - 0;
ready
parseFloat | 0
parseFloat("13268") | 0
ready

Revisions

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