function Person(){
getAge=function(){
console.log('5');
}
return this
}
Person.getAge=function(){
console.log(4)
}
Person.prototype.getAge=function(){
console.log('3')
}
var getAge=function(){
console.log('2')
}
function getAge(){
console.log(1)
}
getAge();
Person.getAge();
Person().getAge();
getAge();
new Person.getAge();
new Person().getAge();