defineProperty を使用して、属性が for...in サイクルに表示されないようにしようとしていますが、機能しません。このコードは正しいですか?
function Item() {
this.enumerable = "enum";
this.nonEnum = "noEnum";
}
Object.defineProperty(Item, "nonEnum", { enumerable: false });
var test = new Item();
for (var tmp in test){
console.log(tmp);
}