绑定this指向

1. call

fun.call(thisArg, param1, param2)

2. apply

fun.apply(thisArg, paramsArray)

3. bind

var func = fun.bind(thisArg);