hoho
Results
2
comments of
hoho
Object.prototype.map = function(handleFn){ return Object.keys(this).reduce((newObj, key) => { return newObj[key] = handleFn(this[key], key, this); }, {}) }