That is a warning stemming from snippets like:
a="hello\
world"
Apparently JsBin does not support the line continuation character unless a specific option is set.
How to set the mentioned multi-string option?
Thanks.
That is a warning stemming from snippets like:
a="hello\
world"
Apparently JsBin does not support the line continuation character unless a specific option is set.
How to set the mentioned multi-string option?
Thanks.
Share Improve this question edited Jan 4, 2013 at 13:07 antonio asked Dec 27, 2012 at 11:35 antonioantonio 11.1k15 gold badges78 silver badges141 bronze badges1 Answer
Reset to default 29Don't know if you need this anymore, but use: /*jshint multistr: true */
Example:
/*jshint multistr: true */
var data = "multiline \
text \
here.";
It will simply remove warning.