标签:return on() console js面试 学习 ons this prot etag
function Person() {
getAge = function() {
console.log(10);
}
return this;
}
Person.getAge = function() {
console.log(20);
}
Person.prototype.getAge = function() {
console.log(30);
}
var getAge = function() {
console.log(40);
}
function getAge() {
console.log(50);
}
Person.getAge();
getAge();
Person().getAge();
getAge();
new Person.getAge();
new Person().getAge();
new new Person().getAge();
学习交流群618237474?
标签:return on() console js面试 学习 ons this prot etag
原文地址:http://www.cnblogs.com/ZZZAB/p/6622867.html