Test name | Executions per second |
---|---|
Using Fill API | 156745.2 Ops/sec |
Using iteration | 154040.4 Ops/sec |
var testArray = new Uint32Array(1024);
testArray.fill(2,0,1024);
var testArray = new Uint32Array(1024);
testArray.fill(2,0,1024);
var testArray = new Uint32Array(1024);
for(var i= 0; i < testArray.length; i++) {
testArray[i] = 2;
}