SOURCE

var a={name:'隔壁老王'}
function eat(time,food){
    console.log(this.name+'在'+time+'吃'+food)
}
var b=eat.bind(a);
b("早上","苹果")

eat.call(a,"早上","苹果")
eat.apply(a,["早上","苹果"])
console 命令行工具 X clear

                    
>
console