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()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。