Script Preparation code:
x
 
function testA(){
    var div = document.createElement('div');
    div.innerText = 'Hello world';
    return div;
}
function testB(){
    var tmp = document.createElement('div');
  var html = '<div>Hello world</div>';
  
  tmp.innerHTML = html;
  
    return tmp.firstChild;
}
var testCData = testA();
function testC(){
    return testCData.cloneNode(true);
}
Tests:
  • A

     
    testA();
  • B

     
    testB();
  • C

     
    testC();
Rendered benchmark preparation results:

Suite status: <idle, ready to run>

Previous results

Experimental features:

  • Test case name Result
    A
    B
    C

    Fastest: N/A

    Slowest: N/A

Latest run results:
Run details: (Test run date: 7 years ago)
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/60.0.3112.113 Safari/537.36
Chrome 60 on Windows
View result in a separate tab
Test name Executions per second
A 820908.6 Ops/sec
B 166861.1 Ops/sec
C 1133336.8 Ops/sec