此函数重复指定的字符串指定的次数。
str.repeat(count)
Count - 字符串应重复的次数。
返回一个新字符串。
var myBook = new String("Perl"); console.log(myBook.repeat(2));
PerlPerl