function identify() {
return this.name.toUpperCase();
}
function sayHello() {
var greeting = "Hello, I'm " + identify.call( this );//不太理解这一步是把this绑定到sayHello函数中嘛?
console.log( greeting );
相关分类