타자연습
개발자를 위한 코드 타자 연습 게임입니다. 실제 코드 스니펫을 타이핑하며 연습해보세요!
DevTyper
Language:
Type the code exactly as shown.
const debounce = (func, wait) => {↵
let timeout;↵
return function executedFunction(...args) {↵
const later = () => {↵
clearTimeout(timeout);↵
func(...args);↵
};↵
clearTimeout(timeout);↵
timeout = setTimeout(later, wait);↵
};↵
};
Press Tab to insert spaces
0 / 252 chars