ユーザーが時間を秒単位で入力し、JavaScript でその数値からゼロまで表示するカウントダウン タイマーを作成するにはどうすればよいですか?
var userChoice = parseInt(prompt("Type in time to countdown"));
var timer = setInterval(countDown, 1000);
// this is what i have
function countDown() {
console.log(counter);
counter--;
if (counter < 0) {
clearInterval(timer);
console.log("END");
}
}