I have just seen this snippet while accidentally opening dev tools in Gmail:
var GM_TIMING_END_CHUNK1=(new Date).getTime();
I would usually expect something like this, as it's rather uncommon to invoke a constructor without parentheses (at least I have never seen it until now):
var GM_TIMING_END_CHUNK1=new Date().getTime();
or
var GM_TIMING_END_CHUNK1=Date.now(); //newer browsers
Is there any advantage in doing so, any difference in behavior? It's the exact same amount of characters needed, so brevity won't be a reason.