_.extend(Person.prototype, {hello:function() {console.log("hello world")} }); p = new Person("John", "Smith"); p.hello();