I've read several posts on this topic here, but I'm still uncertain how I should handle this issue.
In truth, the lines are in the source code much longer e.g.
console.log("html : "+"<li><a href=\""+el.find("link").text()+"\">"+el.find("title").text()+"</a>");
breaking it up in
console.log("html : "
+"<li><a href=\""
+el.find("link").text()
+"\">"
+el.find("title").text()
+"</a>");
everything still works fine, but JSLint tells me "Bad line breaking before '+'"
What is the best practice, recommend way to keep the source human readable (production code will be minified).
Place the break after an operator, ideally after a comma.
" – Moolah