如何在js中制作一个定时器

How to make a timer in js

所以我离开了我的旧项目并决定制作一个像 trello.com 这样的网站,它只是一个任务列表网站,我想让任务在一段时间后消失,但我不知道如何创建时间我试图做一个 string 什么都没有 我尝试了我所知道的一切帮助 这是js

//Don't care about the comment code
/*let todos = document.querySelector('ul')
let form = document.querySelector('form')
let idk = document.querySelector("[name='todo']")
let todo = []
*/
let timer = 80
/*function addtodos(todostext) {
  todo.push(todostext)
  const li = document.createElement('li')
  const button = document.createElement('button')
  li.innerHTML = todostext
  button.innerHTML = "done"
  todos.appendChild(li)
  li.appendChild(button)
}
form.onsubmit =(event) =>{
  event.preventDefault();
  addtodos(idk.value)
}*/
function minustimer() {
  --timer;
  
}

document.write(timer)
function clearInTimeout(timeSecond) {
    setTimeout(() => {
        // use you code clear
        document.write("clear")
        // 
    }, timeSecond * 1000)
}
clearInTimeout(5); 

“清除”将在 5 秒后打印

setInterval 的匿名函数中,您可以删除任务项(而不是我的 console.log)。该项目将在作为 setInterval 的回调给出的特定时间后被删除。基本上,setInterval 会等待一段时间来执行代码块。 https://developer.mozilla.org/en-US/docs/Web/API/setInterval

中的更多信息
function minustimer(){
    setInterval(()=>{
        console.log("Remove the item after 5000 milliseconds")
    },5000)
}

minustimer()