Run details:
Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36
Chrome 71
Windows 7
Desktop
6 years ago
Test name Executions per second
Use hasAttribute shorthand 670048.6 Ops/sec
Use classList 722675.1 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");