2021년 1월 16일
오늘 Moshi 의 lecture를 듣는데
function Stopwatch() {
let startTime, endTime, running, duration = 0;
this.strat = function() {
if(running)
throw new Error('Stopwatch has already started.')
running = true;
startTIme = new Date();
};
this.stop = function () {
if(!running)
throw new Error('Stopwtch is not started.');
running = false;
endTime = new Date();
const seconds =(endTime.getTime() - startTime.getTime()) / 1000;
duration += seconds;
};
this.reset = function() {
startTime = null;
endTime = null;
running = false;
duration = 0;
};
Object.defineProperty(this, 'duration', {
get: function() { return duration; }
});
}
이게 뭐지? 댄스 파티랑 같은건가?
https://developer.mozilla.org/ko/docs/Web/API/EventTarget/addEventListener
https://developer.mozilla.org/en-US/docs/Web/Events\
setTimeout
.back--img {
position: absolute;
z-index: -1;
opacity: 70%;
}
Author And Source
이 문제에 관하여(2021년 1월 16일), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@jtlim0414/2021년-1월-16일저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)