我想知道new FunctionOne
和new FunctionOne()
之间是否有任何区别,其中FunctionOne被定义为
function FunctionOne(){
/// this function has no arguments
///some code
}
答案 0 :(得分:0)
使用operator ()
时传递参数没有区别。除此之外,两者都可用于产生相同的效果。例如。
( new Date() ).getTime();
与
相同( new Date ).getTime();