let array = [];
for(let i = 0; i < 100; i++){
array.push(Math.pow(i,2));
}
for(let i = 0; i < 100; i++){
const decimal = i+.1;
array.push(Math.pow(decimal,2));
}
let array = [];
for(let i = 0; i < 100; i++){
array.push(i*i);
}
for(let i = 0; i < 100; i++){
const decimal = i+.1;
array.push(decimal*decimal);
}
--enable-precise-memory-info
flag.
Test case name | Result |
---|---|
pow | |
mult |
Test name | Executions per second |
---|---|
pow | 1528646.8 Ops/sec |
mult | 1621803.6 Ops/sec |
Benchmark Overview
MeasureThat.net is a website that allows users to create and run JavaScript microbenchmarks, allowing them to compare the performance of different approaches in various scenarios.
The provided benchmark definition json represents a simple benchmark with two test cases: "pow" and "mult". The benchmark tests the performance difference between using Math.pow
versus multiplication (with decimals) for large numbers. We'll dive into each test case, options being compared, pros/cons of those approaches, and other considerations.
Test Case 1: pow
The first test case is defined in the json as:
"Benchmark Definition": "let array = [];\r\nfor(let i = 0; i < 100; i++){\r\narray.push(Math.pow(i,2));\r\n}\r\nfor(let i = 0; i < 100; i++){\r\nconst decimal = i+.1;\r\narray.push(Math.pow(decimal,2));\r\n}",
This test case iterates over an array of 100 numbers, pushing the square of each number (using Math.pow
) to the array. Additionally, it pushes the square of a decimal value (i+0.1
) to the same array.
Options being compared:
Math.pow
for squaring numbers*
) with decimals for squaring numbersPros and Cons:
Math.pow
:*
):Test Case 2: mult
The second test case is defined in the json as:
"Benchmark Definition": "let array = [];\r\nfor(let i = 0; i < 100; i++){\r\narray.push(i*i);\r\n}\r\nfor(let i = 0; i < 100; i++){\r\nconst decimal = i+.1;\r\narray.push(decimal*decimal);\r\n}",
This test case is similar to the first one, but instead of using Math.pow
, it uses multiplication (*
) with decimals for squaring numbers.
Options being compared:
i*i
(square of an integer) versus multiplication (*
) with decimals for squaring numbersPros and Cons:
i*i
:*
):Library usage:
Neither test case uses any external libraries. The Math
library is used implicitly for Math.pow
, but it's not explicitly imported or required.
Special JS features:
There are no special JavaScript features (such as async/await, arrow functions, or classes) used in this benchmark.
Other considerations:
Math.pow
versus multiplication with decimals for squaring numbers.If you're looking for alternatives to this benchmark, here are some options:
Keep in mind that the choice of alternative depends on your specific use case and requirements.