1

次のコードで 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...');
        }
    }
}());
4

1 に答える 1