比如:
var a = Array(); 和 var aa = new Array(); var b = Object(); 和 var bb = new Object();
What is the difference between using new and not using new when creating JS objects and arrays? -PHP Chinese website Q&A-What is the difference between using new and not using new when creating JS objects and arrays? -PHP Chinese website Q&A
Let’s take a look and learn.
使用new的话如果函数没有return会返回一个对象。不使用new如果函数没有return会返回undefined。
What is the difference between using new and not using new when creating JS objects and arrays? -PHP Chinese website Q&A-What is the difference between using new and not using new when creating JS objects and arrays? -PHP Chinese website Q&A
Let’s take a look and learn.
使用new的话如果函数没有return会返回一个对象。不使用new如果函数没有return会返回undefined。