Scientific E notation

Benchmark created by Mathias Bynens on


Test runner

Ready to run.

Testing in
TestOps/sec
Using normal notation
var x;
x = 1000;
x = 1000000;
x = 1000000000;
x = 1000000000000;
x = 1000000000000000;
x = 1000000000000000000;
x = 1000000000000000000000;
ready
Using scientific E notation
var x;
x = 1e3;
x = 1e6;
x = 1e9;
x = 1e12;
x = 1e15;
x = 1e18;
x = 1e21;
ready

Revisions

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

  • Revision 1: published by Mathias Bynens on