In some JavaScript code snippets (e.g. http://mckoss.com/jscript/object.htm) I have seen objects being created in this way:
var obj = new Foo;
However, at least at MDC, it seems that the parentheses are not optional when creating an object:
var obj = new Foo();
Is the former way of creating objects valid and defined in the ECMA standard? Are there any differences between the former way of creating objects and the later? Is one preferred over the other?
Thanks in advance.
newoperator is missing between the two examples of that question). The OP of that question was asking a totally different thing. – Daniel Vassallo Jun 14 '10 at 4:37new Test().toString()andnew Test.toString()though. – pimvdb Jul 15 '11 at 18:52