function Foo() { getName = function () { console.log(1); }; return this } function getName() { console.log(5); } Foo().getName();