Lodash 4参考手册
日期 | Date
Date
_.now()
获取自 Unix 纪元(1970年1月1日00:00:00 UTC)以来经过的毫秒数的时间戳。
以来
2.4.0
返回
(数字):返回时间戳(timestamp)。
示例
_.defer(function(stamp) {
console.log(_.now() - stamp);
}, _.now());
// => Logs the number of milliseconds it took for the deferred invocation.
日期 | Date相关
Lodash 是一个具有一致接口、模块化、高性能等特性的 JavaScript 工具库。
主页 | https://lodash.com/ |
源码 | https://github.com/lodash/lodash/ |
版本 | 4 |
发布版本 | 4.17.4 |