Test name | Executions per second |
---|---|
getComputedStyle | 929.0 Ops/sec |
getAttribute | 3606.1 Ops/sec |
<div id="foo" data-attr="foo"></div>
var i = 3000;
while (i--) {
chekele('foo');
}
function chekele(element) {
return window.getComputedStyle(document.getElementById(element), null).getPropertyValue("display").indexOf('none') === -1;
}
var i = 3000;
while (i--) {
chekele('foo');
}
function chekele(element) {
return document.getElementById(element).getAttribute('data-attr');
}