This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var currentPage = nowPageNum; | |
function goNextPage() { | |
if (currentPage <= totalPageNum) { | |
PageMove2019AfterVersion(currentPage); | |
console.log(`${currentPage} 페이지를 수강완료했습니다.`); | |
currentPage += 1; | |
setTimeout(function() { | |
goNextPage(); | |
}, 1000); |