改变this指向的三种方法(call、apply、bind)

callcall():第一参数 为改变this指向的对象,后面正常接受其他的参数。var user1 = { name: "hello", age: 18, fun: function(){...