Test

Benchmark created on


Setup

let a, b = [3000n, 4000n];

let c = new BigInt64Array( [3000n, 4000n] )

Test runner

Ready to run.

Testing in
TestOps/sec
BigInt
for(let i = 0; i < 1000; ++i)

   a *= b
ready
Array
for(let i = 0; i < 1000; ++i)

   c[0] *= c[1]
ready
Array 2
let d = c[1]

for(let i = 0; i < 1000; ++i)

   c[0] *= d
ready

Revisions

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