티스토리 뷰

나중에 잘 사용할 것 같은데 repeat라는 매서드를 처음 알게되어 메모하고자 TIL 작성!!

 

문제는 다음과 같다.

 

repeat매서드와 slice 함수를 사용해 만들어 주었다.

 

repeat () 매서드

 문자열을 주어진 횟수만큼 반복해 붙인 새로운 문자열을 반환한다.

 

 

repeat () 매서드 사용방법
str.repeat(count);

 

" A.repeat(3) = AAA " 아주 쉽쥬?

 

 

그래서 내가 작성한 코드는 다음과 같다.

function solution(phone_number) {
    return '*'.repeat(phone_number.length-4)+phone_number.slice(-4)          
}