JavaScript 中,调用函数有哪几种方式 方法调用模式 Foo.foo(arg1, arg2);函数调用模式 foo(arg1, arg2);构造器调用模式 (new Foo())(arg1, arg2);call/applay调用模式 Foo.foo.call(that, arg1, arg2);bind调用模式 Foo.foo.bind(that)(arg1, arg2)();