总结几句话:
参数传递方式: let f = f1.call(obj,1,1,1); let t = f1.apply(obj,[1,1,1]); let s = f1.bind(obj,1,1,1);