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);
|