Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/125.0.0.0 Safari/537.36
Chrome 125
Windows
Desktop
11 months ago
Test name Executions per second
createElement 4.1 Ops/sec
cloneNode 11.9 Ops/sec
Tests:
  • createElement

    AخA
     
    var list = [],
        n = 0;
    while(true) {
        n++;
        list.push(document.createElement('div'));
        list[list.length-1].appendChild(document.createElement('div'));
        list[list.length-1].appendChild(document.createElement('div'));
        if(n===100000) 
            break;
    }
  • cloneNode

     
    var list = [],
        n = 0,
        node = document.createElement('div');
    node.appendChild(document.createElement('div'));
    node.appendChild(document.createElement('div'));
    while(true) {
        n++;
        list.push(node.cloneNode(true));
        if(n===100000) 
            break;
    }