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.
Don'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.
© 2022 - 2024 — McMap. All rights reserved.