私は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...
}
}