vote up 14 vote down star
3

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?

flag

5 Answers

vote up 20 vote down check

that's the + unary operator, it's equivalent to:

function(){ return Number(new Date); }

see: http://xkr.us/articles/javascript/unary-add/

link|flag
Good stuff - "Values of type Date will be converted to their corresponding numerical value (via valueOf()), which is the number of milliseconds since the UNIX epoch." – Kon M Oct 21 '08 at 14:53
vote up 3 vote down

Here is the specification regading the "unary add" operator. Hope it helps...

link|flag
vote up -1 vote down

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.

link|flag
vote up 1 vote down

It does exactly the same thing as:

function(){ return 0+new Date; }

that has the same result as:

function(){ return new Date().getTime(); }
link|flag
Nope on 0+new Date. That first converts the date to a string and then prepends a "0", (eg: "0Tue Oct 21 2008 20:38:05 GMT-0400"); – Chris Noe Oct 22 '08 at 0:40
1 * new Date will, but 1 + new Date --> String – Kent Fredric Dec 3 '08 at 15:56
vote up 8 vote down

JavaScript is loosely typed, so it performs type coercion/conversion in certain circumstances:

http://blog.jeremymartin.name/2008/03/understanding-loose-typing-in.html
http://www.jibbering.com/faq/faq_notes/type_convert.html

Other examples:

>>> +new Date()
1224589625406
>>> +"3"
3
>>> +true
1
>>> 3 == "3"
true
link|flag

Your Answer

Get an OpenID
or

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