と の 3 つのhuman
メソッドwalk
で名前を付けた JavaScript オブジェクトを作成しようとしeat
ていtalk
ます。human.talk('hello').walk('home').eat('pizza')
私はこのコードを持っています:
var human = {
talk : function talk(t){
},
walk : function walk(w){
},
eat : function eat(e){
}
};
console.log(human.talk('hello').walk('home').eat('pizza'));
でも受け取ってるUncaught TypeError: Cannot call method 'walk' of undefined
どうして??