Is there any difference between the following two?
var a=new Object() and var a=Object()
After executing each of them on the console, a is an empty object.
Is there any difference between the following two?
var a=new Object() and var a=Object()
After executing each of them on the console, a is an empty object.