(I\'m reading the book \"Professional JavaScript for Web Developers\" to give a context about this question, specifically Chapter 5 on Reference Types)
I\'m wo
The unary +
operator converts a value to a number. For example +"123"
will convert the string "123"
to the number 123
. This will also work for a date, and the date converted to a number gives the number of milliseconds.
What happens is that you first create a new Date object and then cast it to a number.
Under the hood the runtime calls valueOf method of the Date object.
return a new Date object
var d = new Date;
use the Unary + Operator
var n = +d;
The unary + operator calls the internal ToNumber with d
.
9.3 ToNumber
Takes an input argument and if the argument type is Object
(Date is) call the internal ToPrimitive with input and hint Number.
9.1 ToPrimitive
takes an input argument and an optional argument PreferredType.
if input type is Object the spec says:
Return a default value for the Object. The default value of an object is retrieved by calling the [[DefaultValue]] internal method of the object, passing the optional hint PreferredType. The behaviour of the [[DefaultValue]] internal method is defined by this specification for all native ECMAScript objects in 8.12.8.
8.12.8 [[DefaultValue]] (hint)
When the [[DefaultValue]] internal method of O is called with hint Number, the following steps are taken:
- Let valueOf be the result of calling the [[Get]] internal method of object O with argument "valueOf".
- If IsCallable(valueOf) is true then,
- Let val be the result of calling the [[Call]] internal method of valueOf, with O as the this value and an empty argument list.
- If val is a primitive value, return val.
In code this approximately translates to:
var val,
type,
valueOf = O.Get( 'valueOf' );
if ( typeof valueOf === 'function' ) {
val = valueOf.call( O );
type = typeof val;
if ( val == null || type === 'boolean' || type === 'number' || type === 'string' ) {
return val;
}
}
[[Get]]
ting the internal method of O with argument "valueOf" basically means returning Date.prototype.valueOf.
15.9.5.8 Date.prototype.valueOf ( )
The
valueOf
function returns a Number, which is this time value.
If we now go back to 9.3 ToNumber we see that ToNumber calls itself, this time with the returned val
from 8.12.8 [[DefaultValue]] (hint) as primValue
. If argument type is Number it says:
The result equals the input argument (no conversion).
The End
Date.now() function on IE:
return a number of milliseconds between midnight, January 1, 1970, and the current date and time.
Requirements
Not supported in installed versions earlier than Internet Explorer 9. However, it is supported in the following document modes: Quirks, Internet Explorer 6 standards, Internet Explorer 7 standards, Internet Explorer 8 standards, Internet Explorer 9 standards, Internet Explorer 10 standards. Also supported in Windows Store apps.
For get current Date object on IE8, you can use this:
if (typeof Date.now() === 'undefined') {
Date.now = function () {
return new Date();
}
}
For get time value in a Date Object (as the number of milliseconds since midnight January 1, 1970.) on IE8, you can use this:
var currentDateTime = +new Date();