Is there a way to add a function to the Object Prototype in a way that it won't be included in a loop for?
Ex:
Object.prototype.stuff = function(){};
var obj = {'hello':1};
for(var i in obj){
console.log(i);
}
//it will log: hello, stuff
//I'd want it to only log hello,