[ad_1]
Ask any software program engineer they usually’ll inform you that coding date logic is usually a nightmare. Builders want to contemplate timezones, bizarre date defaults, and platform-specific date codecs. The best technique to work with dates is to scale back the date to the most straightforward format potential — normally a timestamp. To get the speedy time in integer format, you should utilize Date.now
:
const now = Date.now(); // 1705190738870
I’ll oftentimes make use of Date.now()
in my console.log
statements to distinguish likewise console.log
outcomes from one another. You could possibly additionally use that date as a novel identifier for an occasion in a low-traffic setting.
The submit Date.now() appeared first on David Walsh Weblog.
[ad_2]