Run details:
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/52.0.2743.116 Safari/537.36
Chrome 52
Windows 7
Other
8 years ago
Test name Executions per second
style.borderLeftWidth 1019170.3 Ops/sec
style.marginLeft 1041633.8 Ops/sec
HTML Preparation code:
AخA
 
1
<div id="test"></div>
Script Preparation code:
x
 
var el = document.getElementById("test");
var style = window.getComputedStyle(el);
function ConvertCssToInt2(x, defaultValue) {
  return (isNaN(x) ? defaultValue : x);
};
Tests:
  • style.borderLeftWidth

     
    var t = ConvertCssToInt2(parseInt(style.borderLeftWidth, 10), 0);
  • style.marginLeft

     
    var t = ConvertCssToInt2(parseInt(style.marginLeft, 10), 0);