프로그래머스 Lv.1 자릿수 더하기
1 2 3 4 5 6 7 8 9 10 | function solution(n) { let n_split = String(n).split(''); let result = 0; for(let i = 0; i < n_split.length; i++) { result += Number(n_split[i]); } return result; } | cs |
정수로 받아온
n
을 문자열로 바꾼후split
을 사용해 잘라서n_split
에 할당해준다.반복문을
i
가 0부터n_split
의 길이까지 반복한다.
n_split[i]
를 다시 정수로 바꿔서result
에 더해준다.