repeat 문자열을 주어진 횟수만큼 반복해 붙인 새로운 문자열 반환 str.repeat(count); let str = "abc"; str.repeat(-1);// error str.repeat(0);// "" str.repeat(1);// "abc" str.repeat(5);// "abcabcabcabcabc" str.repeat(2.5);// "abcabc" 정수 단위로 수행 concat 매개변수로 전달된 모든 문자열을 호출 문자열에 붙인 새로운 문자열을 반환 const str1 = 'Hello'; const str2 = 'World'; str1.concat(str2);// "HelloWorld" str1.concat(' ', str2);// "Hello World" str2.concat(', ',..