Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个程序来计算停机时间,所以我希望它从起点开始计算到停机时间结束的终点。例如(0 到 5 分钟,49 分钟,1 小时:36 分钟)我可以尝试什么方法来获得它?
要立即获取时间(以毫秒为单位),您可以调用Date.now(). 将其存储在某处并在最后再次调用该函数。从结尾减去开始,你得到总时间,以毫秒为单位。之后,剩下的只是简单的数学运算,将毫秒转换为秒、分钟、小时等。
Date.now()