一道常被人轻视的前端JS面试题
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了一道常被人轻视的前端JS面试题相关的知识,希望对你有一定的参考价值。
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?
以上是关于一道常被人轻视的前端JS面试题的主要内容,如果未能解决你的问题,请参考以下文章