0
私はNode.jsを学ぶのに初めての学生です。なぜconsole.logは私に未定義を与えるのだろうか?私はそれが 'Hello World!'代わりに。どこが間違っていますか?Nodejsが関数を呼び出す
ありがとうございます!
function Greetr() {
this.greeting = 'Hello World!';
}
Greetr.prototype.greet = function() {
console.log(this.greeting);
}
Greetr.prototype.greet();
可能な重複を経由してあなたの
greet
関数を呼び出します.prototype.methodName()およびfunObject.methodName()?](https://stackoverflow.com/questions/44517936/is-there-any-difference-between-calling-function-in-functionname-prototype-metho) –