string.repeat()是JavaScript中的内置函数,用于构建新的字符串,该字符串包含指定数量的已调用此函数的字符串的副本。
用法:
string.repeat(a);
参数:这里的参数“ a”是一个整数值,表示重复给定字符串的次数。整数“a”的范围是从零(0)到无穷大。
返回值:它返回一个新字符串,其中包含指定数量的字符串副本。
代码1:
<script>
// Taking a string "gfg"
A = "gfg";
// Repeating the string multiple times
a = A.repeat(5);
document.write(a);
</script>
输出:
gfggfggfggfggfg
代码2:
<script>
// Taking a string "gfg"
A = "gfg";
// Repeating the string 2.9 times i.e, 2 times
// because 2.9 conterted into 2
b = A.repeat(2.9);
document.write(b + "<br>");
</script>
输出:
gfggfg
注:本文由纯净天空筛选整理自Kanchan_Ray大神的英文原创作品 JavaScript | string.repeat()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。