본문 바로가기

JavaScript

repeat() 함수

728x90

repeat() 메서드는 문자열을 주어진 횟수만큼 반복해 붙인 새로운 문자열을 반환해주는 메서드이다.

str = "123";
strRepeat = str.repeat(3);
console.log(strRepeat); // 123123123

// `` 을 사용한다면 ${} 안에 넣어주면 된다.
str = ['1', '2', '3', '4', '5'];

for(let i = 0; i < str.length; i ++){
  console.log(`${str[i].repeat(i+1)}\n`);
}

// 1
// 22
// 333
// 4444
// 55555

[출처]
https://ant-programmer.tistory.com/16

728x90

'JavaScript' 카테고리의 다른 글

2차원 배열의 중복값 제거  (0) 2023.11.26
TypeError: Cannot read properties of undefined (reading '0')  (0) 2023.11.26
reduce() 함수  (0) 2023.10.26
map() 함수  (1) 2023.10.26
filter() 함수  (0) 2023.10.26