사랑하애오

솔루션

const solution = (n) => {
  const answer = [...("" + n)].map((v) => +v).reduce((x, y) => x + y, 0);
  console.log(answer);

  return answer;
};

 

 

 

솔루션

const solution2 = (n) => {
  const answer = n
    .toString()
    .split("")
    .reduce((x, y) => x + Number(y), 0);
  console.log(answer);

  return answer;
};
profile

사랑하애오

@사랑하애

포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!