Logo

Programming-Idioms

History of Idiom 61 > diff from v27 to v28

Edit summary for version 28 by :
New JS implementation by user [mdciotti]

Version 27

2016-02-16, 18:39:12

Version 28

2016-02-17, 04:27:36

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();
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