- check proper use of JQuery functions - check for concatenation with HTML strings - add sort for output - lint CoffeeScript
7 lines
153 B
JavaScript
7 lines
153 B
JavaScript
var message = "Rock & Roll";
|
|
var x = "<string>" + message + "</strong>";
|
|
var template = "<%= invalid %>";
|
|
// quiet the linter
|
|
alert(x);
|
|
alert(template);
|