6

The code: var foo = /\</;

When I go to jslint.com and enter that in, I get:

Problem at line 1 character 12: Unexpected '\'.

It used to tell me Unexpected escaped character '<' in regular expression. but times have changed.

So I'm just curious, why? If you try var foo = /\>/; it doesn't care, what's the deal with <?

goatslacker
  • 10,032
  • 2
  • 15
  • 15
  • 5
    There's no need to escape the "<" character there. Also JSLint is just the codification of Crockford's random opinions. Think of it as a weird dude at a bus stop complaining to you about your code. – Pointy Nov 05 '11 at 09:23
  • I know there's no need to escape it, hence the error. But why that character in particular...out of all the unnecessary characters to escape, why `<`. – goatslacker Nov 05 '11 at 09:32
  • I'm sure there's a reason for his decision to include that warning in his application. Even if the reason is "it's stupid and confusing." – goatslacker Nov 05 '11 at 09:33

1 Answers1

3

If you have a two simple divs, the difference is clear:

<div> < </div> <!--Missing right angle bracket, bad markup-->
<div> > </div> <!--No problem, just a greater than text node-->

JSLint does not assume that the script is a standalone file or inside a script tag of an HTML document. In markup languages such as XUL, MXML, XAML, TVML, LZX, XHTML5 or SVG, the script tag content is treated like the first div in the above example, so the left angle bracket will look like the start of a tag. In those languages, use an entity replacement or a CDATA block to wrap the left angle bracket and ampersand characters:

<script> 
if ( -1 &lt; 0 &amp;&amp; true !== false) {} 
</script>

<script>
<![CDATA[
if ( -2 < 0 && true !== false) {}
]]>
</script>

References

Paul Sweatte
  • 24,148
  • 7
  • 127
  • 265