On Mozilla Org's website, the polyfill code of Array.prototype.some
has this line:
var len = t.length >>> 0;
What is this line for, as opposed to just
var len = t.length;
?
On Mozilla Org's website, the polyfill code of Array.prototype.some
has this line:
var len = t.length >>> 0;
What is this line for, as opposed to just
var len = t.length;
?