gpt4 book ai didi

javascript - 为什么 setinterval 带回一个整数(新手)

转载 作者:行者123 更新时间:2023-11-29 21:12:00 25 4
gpt4 key购买 nike

function myTimer() {
return new Date().toLocaleTimeString();
}

setInterval(function(){ myTimer() }, 1000);

为什么单独调用 myTimer 会按预期返回字符串,但通过 setInterval 调用时会返回整数?

最佳答案

The returned timeoutID is a numeric, non-zero value which identifies the timer created by the call to setInterval(); this value can be passed to Window.clearInterval() to cancel the timeout.

详细信息: https://developer.mozilla.org/en-US/docs/Web/API/WindowTimers/setInterval

关于javascript - 为什么 setinterval 带回一个整数(新手),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41377771/

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