Back to all posts
핸드폰 번호 가리기
Written by ppotatoG & Posted on November 17th, 2021
처음 제출한 답
s
길이 -4 만큼 '*'를 repeat을 사용하여 반복
위에 '*'에 s
의 뒤에서 네자리 를 합쳐주기
function solution(s) {return '*'.repeat(s.length - 4) + s.substring(s.length, s.length - 4);}
최근 보충한 답
처음과 비슷하지만, substring대신 slice를 사용했다
function solution(phone) {return ('*').repeat(phone.length - 4) + phone.slice(-4);}