I use a regexp in my javascript code, that searches for a tag with its "less than" and "more than" brackets :
html = html.replace(/(\<\/ul\>\n\<ul\>)/gm,'');
It works perfectly, but jshint tells me "Unexpected escaped character '<' in regular expression."
My question is : is there a good reason to escape them ?