What does JSLint's "Bad Escapement" mean in this case?
- by karlthorwald
I thougth "bad escapement" stands for wrong use escaping with slash.
Why does JSLint bring up the message in this function on the 3d line (for...) ?
function splitTags(commaSeparated) {
var tagArray = commaSeparated.split(',');
for (var i=tagArray.length - 1; i>=0; --i ){
tagArray[i] = f.trim(tagArray[i]);
}
return tagArray;
}