1. 오늘 날짜 출력하기 let today = new Date(); document.write(today.getMonth()+1, "월",today.getDate(),"일"); 3. 0부터 1000000까지 합하는 코드의 실행시간 측정시간을 출력하시오 let start = performance.now(); let sum = 0; for(let i=0; i첫글자 대문자로 변환 let strCap = (str) => { let word = str[0].toUpperCase() let newWord = str.replace(`${str[0]}`,`${word}`) document.getElementById("a").innerHTML = str + " -> " + newWord } 아쉽다... 찾아보니 prom..