最佳答案
我做了这个计数器,但是我想让它永远运行下去,这很简单,我做错了什么?
function timer() {
console.log("timer!")
}
window.setInterval(timer(), 1000)