我正在尝试从https://developer.mozilla.org/en-US/docs/JavaScript/A_re-introduction_to_JavaScript了解 Javascript 概念。请看下面的代码;
function personFullName() {
return this.first + ' ' + this.last;
}
function personFullNameReversed() {
return this.last + ', ' + this.first;
}
function Person(first, last) {
this.first = first;
this.last = last;
this.fullName = personFullName;
this.fullNameReversed = personFullNameReversed;
}
我很困惑为什么函数 personFullName() 被称为
this.fullName = personFullName;
为什么不叫like;
this.fullName = personFullName();
以下内容相同;
this.fullNameReversed = personFullNameReversed;
我知道函数是 javascript 中的对象,但我无法理解这个概念?