Run details:
Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:95.0) Gecko/20100101 Firefox/95.0
Firefox 95
Windows
Desktop
3 years ago
Test name Executions per second
createElement 5.2 Ops/sec
cloneNode 11.2 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;
    }