repeat() includes() concat() 此函数重复指定的字符串指定的次数。 语法 str.repeat(count) 参数 计数 - 字符串应重复的次数。 返回值 返回一个新字符串。 例 var myBook = new String("Perl"); console.log(myBook.repeat(2)); 输出 PerlPerl includes() concat()