protoProperty function protoProperty(object,property){var arr = [];while(object){if(object.hasOwnProperty(property)){ arr.push(object);}object=object.__proto__; }console.dir(arr);}
function protoProperty(object,property){ var arr = []; while(object){ if(object.hasOwnProperty(property)){ arr.push(object); } object=object.__proto__; } console.dir(arr); }