[JavaScript/section 1] 12 - ๋๋ฌธ์๋ก ํต์ผ
ยท
Algorithm/์ธํ๋ฐ(inflearn)
๐ ๋ฌธ์ ๋๋ฌธ์์ ์๋ฌธ์๊ฐ ๊ฐ์ด ์กด์ฌํ๋ ๋ฌธ์์ด์ ์
๋ ฅ๋ฐ์ ๋๋ฌธ์๋ก ๋ชจ๋ ํต์ผํ์ฌ ๋ฌธ์์ด์ ์ถ๋ ฅํ๋ ๋ฌธ์ ์ด๋ค. ๋๋ ๋ฌธ์์ด ์ ์ฒด๋ฅผ toUpperCase() ๋ฉ์๋๋ฅผ ์ฌ์ฉํ์ฌ ๋๋ฌธ์๋ก ํต์ผํด์ฃผ์๋ค. ๋ํ, ๋๋ฌธ์ ์ฐพ๊ธฐ ๋ฌธ์ ์์ ์ฌ์ฉํ๋ charCodeAt() ๋ฉ์๋์, ์์คํค์ฝ๋ ๋ฒํธ๋ฅผ ๋ฐ์ ๋ฌธ์์ด์ ๊ตฌ์ฑํด์ฃผ๋ String.fromCharCode() ๋ฉ์๋๋ฅผ ๊ฐ์ด ์ฌ์ฉํ ๋ฐฉ๋ฒ๋ ์์๋ณด์๋ค. ๐ ํ์ด // toUpperCase() ๋ฉ์๋๋ฅผ ์ฌ์ฉํ ์ฝ๋ function solution(s) { let answer = ''; answer = s.toUpperCase(); return answer; } let str = 'ItisTimeToStudy'; console.log(solution(str)); // ch..