Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは、次のようなスニペットに起因する警告です。
a="hello\ world"
特定のオプションが設定されていない限り、JsBin は行継続文字をサポートしていないようです。
上記の複数文字列オプションを設定するには?
ありがとう。
これがもう必要かどうかはわかりませんが、次を使用してください。/*jshint multistr: true */
/*jshint multistr: true */
例:
/*jshint multistr: true */ var data = "multiline \ text \ here.";
単に警告を削除します。