728x90
repeat() 함수
주어진 문자열을 옵션의 count 만큼 반복하여 붙인 다음에 새로운 문자열로 반환하는 함수
parameter : 반복 횟수
사용방법 )
// repeat() 함수 사용방법
string.repeat( [반복 count])
예시 )
let test = "123";
testRepeat = test.repeat(3);
console.log(testRepeat);
let strTest = ['A', 'B', 'C', 'D', 'E'];
for(let i = 0; i < strTest.length; i ++){
console.log(strTest[i].repeat(i+1));
}
======================================================================
"123123123"
"A"
"BB"
"CCC"
"DDDD"
"EEEEE"
728x90