728x90
repeat()
repeat() 메서드는 문자열을 복사하여, 복사한 새로운 문자열을 반환합니다.
const str1 = "javascript";
const currentStr1 = str1.repeat(0);
const currentStr2 = str1.repeat(1);
const currentStr3 = str1.repeat(2);
결과보기
728x90
반응형
'Javascript' 카테고리의 다른 글
[javascript]includes() (3) | 2022.08.17 |
---|---|
[javascript]padStart() / padEnd() (3) | 2022.08.17 |
[javascript]concat() (3) | 2022.08.17 |
[javascript]replace() / replaceAll() (3) | 2022.08.17 |
[javascript]split() (2) | 2022.08.17 |
댓글