What is the best practice for that then?
Jslint explains that it "adds confusion". I don't see it really...
EDIT: The code, as requested:
var all,l,elements,e;
all = inElement.getElementsByTagName('*');
l = all.length;
elements = [];
for (e = 0; e < l; (e++))
{
if (findIn)
{
if (all[e].className.indexOf(className) > 0)
{
elements[elements.length] = all[e];
}
} else {
if (all[e].className === className)
{
elements[elements.length] = all[e];
}
}
}
++and--". Of course it's going to complain about it. ;-) – Samir Talwar Jun 11 '10 at 13:58++or--ever caused a programmer any confusion? I love JSLint, but COME ON. – Stephen Nov 2 '10 at 15:12} else {is the dumbest thing in JSLint. – Almo Jun 14 '12 at 15:21