Benchmark with such name already exists.
x
1
 
1


1
 
1
  • 9
     
    1
    const treeWalker = document.createTreeWalker(
    2
      document.body,
    3
      NodeFilter.SHOW_ELEMENT
    4
    );
    5
    6
    let element;
    7
    while (element = treeWalker.nextNode()) {
    8
        
    9
    }
  • 1
     
    1
    const list = document.body.querySelectorAll('*');
Validate benchmark  Cancel

© 2022 - MeasureThat.net (Version: 1.3.3.0)