Javascript 關鍵字使用 in 判斷物件是否有該屬性成員
今天在別人的 js 範例當中看到一個關鍵字 in,
if ('items' in obj) {
return obj.items;
}
for (var prop in obj) { ... }
var object = {property: 0};
if(object.property) { ... } // will not run if('property' in object) { ... } // will run
if(object.hasOwnProperty('property')) {...}