function identify() { return this.name.toUpperCase();}function sayHello() { var greeting = "Hello, I'm " + identify.call( this );//不太理解这一步是把this绑定到sayHello函数中嘛? console.log( greeting );}
添加回答
举报
0/150
提交
取消