4

私はjshintを使用しています。「for」キーワードをグローバル変数として扱っている理由を誰か教えてもらえますか?

グローバル 'for' 変数を作成しています。「for (var items ...」である必要があります

ループは次のとおりです。

//items and properties are defined above...
var items = null, properties = someObject;

//code here is properly terminated with ; "semicolon"

for (items in properties) {
    if (properties.hasOwnProperty(items)) {
        //some code here...
    }
}
4

3 に答える 3

3

これは JSHint のバグのようです: https://github.com/jshint/jshint/issues/1016

于 2013-10-05T17:11:19.103 に答える