Run details:
Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4021.2 Safari/537.36
Chrome 81
Linux
Desktop
5 years ago
Test name Executions per second
createElement 2.0 Ops/sec
cloneNode 5.6 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;
    }