var Foo = function(){
this.age = 18;
this.**getName** = function () {
console.log("2");
}
}
Foo.**getName** = function () {
console.log("2");
}
excuse me, is there any difference between these two getName properties?