2020-09-18 게시 됨2021-08-04 업데이트 됨programmers몇 초안에 읽기 (약 64 단어)자릿수 더하기자릿수 더하기1234567891011// https://programmers.co.kr/learn/courses/30/lessons/12931function solution(n) { let answer; n = `${n}`; n = n.split(''); answer = n.reduce((prev, curr) => { return parseInt(curr) + parseInt(prev); }, 0); return answer;}result = solution(123); 해설 각 자릿수를 더해서 반환한다 reduce로 각 자릿수의 합을 구한다 자릿수 더하기https://chinsun9.github.io/2020/09/18/자릿수-더하기/AuthorchinsungPosted on2020-09-18Updated on2021-08-04Licensed under#javascriptprogrammers