gpt4 book ai didi

javascript - 在声明 const 之前在函数中引用 const 时,如何避免 jshint 说 const 未定义?

转载 作者:行者123 更新时间:2023-11-27 23:27:50 26 4
gpt4 key购买 nike

有没有办法重写下面的内容,以避免 jshint 说 'intervalID' 未定义,并保持 intervalIDdoSomething 常量

const doSomething = () => {
// do stuff

if (isFinished()) {
clearInterval(intervalID); // <--jshint complains that intervalID is not defined
}
}

const intervalID = setInterval(doSomething, 1000);

最佳答案

这是不可能的。但你可以使用 jshint 内联标志,例如

/* globals intervalID: true */

关于javascript - 在声明 const 之前在函数中引用 const 时,如何避免 jshint 说 const 未定义?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34808595/

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