标签: javascript
以下代码正在打印“helloundefined”,但我希望它能打印出“Hello there”。
var proto = { age: function(a) { console.log(a+this.val) } }; ; var a = { val: "there" }; a = Object.create(proto); a.age("hello");