Run details:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:82.0) Gecko/20100101 Firefox/82.0
Firefox 82
Mac OS X 10.15
Desktop
4 years ago
Test name Executions per second
Use hasAttribute shorthand 232364608.0 Ops/sec
Use classList 21892636.0 Ops/sec
HTML Preparation code:
AخA
 
1
<div id="foo" class="bar baz"></div>
Script Preparation code:
 
var test_element = document.getElementById("foo");
Tests:
  • Use hasAttribute shorthand

     
    test_element.hasAttribute('class');
  • Use classList

     
    test_element.classList.contains("bar");