Script Preparation code:
AخA
 
window.cachedFormatter = new Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' });
Tests:
  • cached Intl.NumberFormat instance

     
    window.cachedFormatter.format(3_950_219.56);
  • new Intl.NumberFormat

     
    new Intl.NumberFormat('pt-BR', { style: 'currency', currency: 'BRL' }).format(3_950_219.56);
  • Number.prototype.toLocaleString

     
    (3_950_219.56).toLocaleString('pt-BR', { style: 'currency', currency: 'BRL' });
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    cached Intl.NumberFormat instance
    new Intl.NumberFormat
    Number.prototype.toLocaleString

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 5 months ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36
Chrome 130 on Windows
View result in a separate tab
Test name Executions per second
cached Intl.NumberFormat instance 1148843.9 Ops/sec
new Intl.NumberFormat 28192.9 Ops/sec
Number.prototype.toLocaleString 29502.8 Ops/sec