repeat1. repeat /** * repeat - 첫번째 인자로 넣은 파라미터의 갯수만큼 문자열을 복제 * @params count * @returns string */ "a".repeat(3) // "aaa" "test".repeat(2) // "testtest" replaceAll