20210329(월)
2021-03-29
1. 학습 날짜
2. 학습 시간
3. 학습 범위 및 주제
4. 학습 목표
5. 학습 정리
6. 상세 학습 내용
7. 오늘 학습 내용에 대한 개인적인 총평
8. 다음 학습 계획
Last updated
Last updated
var interval = setInterval(function() {
console.log("Interval");
}, 1000);
clearInterval(interval);function setCountDownAsInterval() {
let remain_time = 9;
let myInterval = 0;
return myInterval = setInterval(function () {
if (remain_time === 0) {
clearInterval(myInterval);
myInterval = 0
gameStop('time-out');
}
countDown(remain_time--)
}, 1000);
}function play(url) {
return new Promise(function (resolve, reject) {
var audio = new Audio();
audio.preload = "auto";
audio.autoplay = true;
audio.onerror = reject;
audio.onended = resolve;
audio.src = url;
});
}