핸드폰 번호 가리기

RyuIsangGo🤘·2023년 8월 21일
0

문제

나의코드

const solution = (phone_number) => {
    return `${'*'.repeat(phone_number.length - 4)}${phone_number.substring(phone_number.length - 4)}`;
}

로직흐름

별표는 폰넘버 길이 - 4만큼 반복된다.
폰넘버의 마지막 숫자 4자리는 폰넘버 길이 - 4인덱스부터 끝까지 추출하면된다.

profile
이전 블로그 입니다.

0개의 댓글