gpt4 book ai didi

javascript - 如何从日期中切出 x 个字符?

转载 作者:行者123 更新时间:2023-11-29 17:58:34 25 4
gpt4 key购买 nike

我使用 Date.now() 获取 unix 格式的当前时间戳。我尝试从时间戳中删除最后的 x 个字符。我尝试使用 currentTime = currentTime.slice(0, -4); 但我得到 Uncaught TypeError: currenTime.slice is not a function

currentTime = Date.now();
document.getElementById("out1").innerHTML = "out1 = " + currentTime;

currentTime = currentTime.slice(0, -4);
document.getElementById("out2").innerHTML = "out2 = " + currentTime;
<p id="out1">out1 = </p>
<p id="out2">out2 = </p>

最佳答案

您可以将日期转换为字符串:

Date.now().toString().slice(0, -4)

关于javascript - 如何从日期中切出 x 个字符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37027854/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com