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.
jslint がこの構文について不平を言うのはなぜですか:
var myint; myint = 0; myint++;
www.jslint.com の応答:
予期しない「++」。myint++;
@bfavarettoの答えは正しいです。これを許可する場合 (Web 以外のバージョンを使用している場合)、次のディレクティブを使用して設定plusplusします。true
plusplus
true
/*jslint plusplus: true */
参照