I've seen this in a few places
function(){ return +new Date; }
And I can see that it is returning a timestamp rather than a date object, but I can't find any documentation on what the plus sign is doing.
Can anyone explain?
|
3
|
I've seen this in a few places
And I can see that it is returning a timestamp rather than a date object, but I can't find any documentation on what the plus sign is doing. Can anyone explain?
|
||
|
|
|
|
that's the + unary operator, it's equivalent to:
|
||
|
|
|
Here is the specification regading the "unary add" operator. Hope it helps... |
||
|
|
|
|
The unary plus converts the Date object to a String, and then converts it to a number, with the operator then applied to the number. A unary plus does nothing to the number, giving the result. |
||
|
|
|
|
It does exactly the same thing as:
function(){ return 0+new Date; }
that has the same result as:
function(){ return new Date().getTime(); }
|
||||
|
|
|
JavaScript is loosely typed, so it performs type coercion/conversion in certain circumstances: http://blog.jeremymartin.name/2008/03/understanding-loose-typing-in.html Other examples:
|
||
|
|