const solution = (phone_number) => { return `${'*'.repeat(phone_number.length - 4)}${phone_number.substring(phone_number.length - 4)}`; }
별표는 폰넘버 길이 - 4만큼 반복된다. 폰넘버의 마지막 숫자 4자리는 폰넘버 길이 - 4인덱스부터 끝까지 추출하면된다.