x = console.log.bind(console); x('blah');
hasOwn = Object.prototype.hasOwnProperty.call.bind(Object.prototype.hasOwnProperty); o = {a:1}; alert([hasOwn(o, 'a'), hasOwn(o, 'b')]);