_.now()
_.now()
返回当前时间的时间戳,以毫秒为单位。
示例:
javascript
// 获取当前时间的时间戳
const timestamp = _.now();
console.log(timestamp);
// 输出:当前时间的时间戳(毫秒)
在这个例子中,_.now()
返回了当前时间的时间戳。