为什么 jshint 没有报告以下代码的 forin (hasOwnProperty) 错误?jslint 会报告错误,但 jshint 不会。
/*jshint forin: true */
(function () {
"use strict";
var obj = {a: 1, b: 2}, i = null;
for (i in obj) {
if (i === 0) {
console.log('blah...');
}
}
}());