js用new实例化对象与直接调用的this的区别function Fun(argument1,argument2){ return this } 直接调用 var f1 = Fun() window {} 实例化对象 var f2 = new Fun(2023-04-28JavaScript260