What are the differences between these two codes in JavaScript?
var obj = new Object();
obj.X = 10;
obj.Y = 20;
And,
var obj = {X:10, Y:20};
|
|
What are the differences between these two codes in JavaScript?
And,
|
||||||||||||
|
|
|
Nothing at all. Just syntax. You could also use:
|
||
|
|
|
|
The second is a shortcut for the first. Functionally they are the same. |
||||||||||||||
|
|
|
Object literal format So the more readable variant |
||
|
|
|
|
Nothing really. Well, that's not quite true, but the differences are far too minor to mention. |
||
|
|