Math.pow(54, 2);
54*54
function pow(x, y){
let result = x;
while(y){
y--;
result*=x;
}
pow(54, 2);
FAQ: FAQ
Source code: GitHub/MeasureThat.net
Report issues: MeasureThat.net/Issues
Based on: Benchmark.js
Facebook page: https://www.facebook.com/MeasureThat.Net
Python benchmarks support: Pyodide