avadhesh18 / jsPrefer

0 stars 0 forks source link

[addnew] getElementById vs querySelector vs querySelectorAll #12

Open avadhesh18 opened 9 months ago

avadhesh18 commented 9 months ago

/-/description Which ons is faster among them? /-/html

Some text data to select

/-/js1 var x = document.getElementById('test'); /-/js2 var y = document.querySelector('test'); /-_/js3 var y = document.querySelectorAll('test');

avadhesh18 commented 9 months ago

Thank you for adding to jsPrefer. You can find your test at the following URL: https://avadhesh18.github.io/jsPrefer/tests/getelementbyid-vs-queryselector-vs-queryselectorall-1696431696.html