โ๏ธ repeat() ์์ฝ
ํน์ ๋ฌธ์์ด์ ์ํ๋๋งํผ ๋ฐ๋ณตํ ๋ฌธ์์ด์ ์ป๊ณ ์ถ์ ๋ ์ฌ์ฉ.
โ๏ธ repeat() ๊ธฐ๋ณธํ
string.repeat(count);
string : ๋ฌธ์์ด์ด ์ ์ฅ๋ string ๋ณ์
count : ๋ฐ๋ณตํ ํ์
โ๏ธ repeat() ์ฌ์ฉ๋ฒ
str = 'abc';
console.log(str.repeat(3)); // abcabcabc ์ถ๋ ฅ