String.prototype.repeat(count: number): string ES6
์ธ์๋ก ์ ๋ฌํ ์ซ์๋งํผ ๋ฐ๋ณตํด ์ฐ๊ฒฐํ ์๋ก์ด ๋ฌธ์์ด์ ๋ฐํํ๋ค.
- count๊ฐ 0์ด๋ฉด ๋น ๋ฌธ์์ด์ ๋ฐํ
- ์์์ด๋ฉด RangeError ๋ฐ์
- ๊ฐ์ด ์์์ ์ผ ๋ ์ ์ ๋ถ๋ถ๋ง ์ธ์ํ์ฌ ์ ์ฉ
console.log('์๋ฐ'.repeat(0)); // ''
console.log('์๋ฐ'.repeat(2.5)); // '์๋ฐ์๋ฐ' (2.5 -> 2)
https://programmers.co.kr/learn/courses/30/lessons/12922