Test name | Executions per second |
---|---|
Approximation | 1001.1 Ops/sec |
Math.sin | 1587.9 Ops/sec |
<!--your preparation HTML code goes here-->
const arr = Array.from({ length: 100000 }, () => Math.random());
function sine(v) {
return 0.5 - 0.5 * Math.cos(v * Math.PI);
}
arr.map(el => sine(el));
arr.map(el => Math.sin(el));