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.

link|improve this question

1  
looks like a dupe of stackoverflow.com/questions/1419945/… – RC. Jun 14 '10 at 4:25
4  
@RC: Actually it's not a dupe. (Note that the new operator 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:37
1  
maybe when you use "()" you call the constructor of that Object? just a thought... – citizen conn Jul 15 '11 at 18:47
2  
There is a difference between new Test().toString() and new Test.toString() though. – pimvdb Jul 15 '11 at 18:52
@simshaun, you are right this is a duplication. In hindsight, to me, this question is what I was googling for. If SEO counts, it would be helpful to not have this question deleted. – Ross Jul 15 '11 at 18:56
show 4 more comments
feedback

4 Answers

up vote 22 down vote accepted

Quoting David Flanagan1:

As a special case, for the new operator only, JavaScript simplifies the grammar by allowing the parenthesis to be omitted if there are no arguments in the function call. Here are some examples using the new operator:

o = new Object;  // Optional parenthesis omitted here
d = new Date();  

...

Personally, I always use the parenthesis, even when the constructor takes no arguments.

In addition, JSLint may hurt your feelings if you omit the parenthesis. It reports Missing '()' invoking a constructor, and there doesn't seem to be an option for the tool to tolerate parenthesis omission.


1 David Flanagan: JavaScript the Definitive Guide: 4th Edition (page 75)

link|improve this answer
Why does JSLint encourage the use of parenthesis? – Randomblue Dec 27 '11 at 3:07
I guess it is just considered more consistent. – Daniel Vassallo Dec 28 '11 at 13:26
feedback

If you do not have arguments to pass, the parentheses are optional. Omitting them is just syntactic sugar.

link|improve this answer
feedback

I don't think there is any difference when you are using the "new" operator. Be careful about getting into this habit, as these two lines of code are NOT the same:

var someVar = myFunc; // this assigns the function myFunc to someVar
var someOtherVar = myFunc(); // this executes myFunc and assigns the returned value to someOtherVar
link|improve this answer
feedback

There's no difference between the two.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.