Logo

Programming-Idioms

History of Idiom 61 > diff from v28 to v29

Edit summary for version 29 by :
[JS]

Version 28

2016-02-17, 04:27:36

Version 29

2016-02-17, 04:27:54

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Idiom #61 Get current date

Assign to variable d the current date/time value, in the most standard type.

Code
var _d = Date.now();
Code
var d = Date.now();
Comments bubble
See the documentation for support and polyfills for non-modern browsers.
Comments bubble
See the documentation for support and polyfills for non-modern browsers.
Doc URL
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now
Doc URL
https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Date/now