Hello,
In JavaScript, it seems you can do either write:
new Date().getTime();
...or:
(new Date).getTime();
The first one is logical, but the second one seems a little unusual to me... Is there any difference between these two ways of creating a Date object, and what is the purpose of the second?
Thanks,
Steve