HTML Preparation code:
AخA
 
1
<canvas id="c" width="800" height="300"></canvas>
Script Preparation code:
 
$c = document.getElementById('c');
$ctx = $c.getContext('2d');
$ctx.clearRect(0, 0, 800, 300);
$px = $ctx.createImageData(1, 1);
$pxls = [];
for (var i=0; i<10000; ++i) $pxls.push({
   x: Math.random() * 800 << 0,
   y: Math.random() * 300 << 0,
   r: Math.random() * 255 << 0,
   g: Math.random() * 255 << 0,
   b: Math.random() * 255 << 0,
   a: Math.random() * 128 << 0 + 128
});
$i = 0;
Tests:
  • fillRect/concat

     
    for (var i=500;i--;){
    var px = $pxls[$i++ % 10000];
    $ctx.fillStyle = 'rgba(' + px.r + ',' + px.g + ',' + px.b + ',' + (px.a / 255) + ')';
    $ctx.fillRect(px.x, px.y, 1, 1);
    }
  • fillRect/join

     
    for (var i=500;i--;){
    var px = $pxls[$i++ % 10000];
    $ctx.fillStyle = 'rgba(' + [px.r,px.g,px.b,px.a/255].join() + ')';
    $ctx.fillRect(px.x, px.y, 1, 1);
    }
  • fillRect/template-string

     
    for (var i=500;i--;){
    var px = $pxls[$i++ % 10000];
    $ctx.fillStyle = `rgba(${px.r},${px.g},${px.b},${px.a/255})`;
    $ctx.fillRect(px.x, px.y, 1, 1);
    }
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    fillRect/concat
    fillRect/join
    fillRect/template-string

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: one year ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36
Chrome 108 on Windows
View result in a separate tab
Test name Executions per second
fillRect/concat 620.8 Ops/sec
fillRect/join 607.3 Ops/sec
fillRect/template-string 622.4 Ops/sec