如何使用 JavaScript 重複字串?
要重複字串,可以使用 Array() 和 join()。
示例
以下是程式碼 −
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
String.prototype.counter = function (value) {
return new Array(value + 1).join(this);
}
console.log("The repeat string
".counter(5));
</script>
</html>要執行以上程式,請將檔案儲存為 anyName.html(index.html)。在該檔案中單擊右鍵,然後在 VS Code 編輯器中選擇“使用即時伺服器開啟”選項。
輸出
此操作將在控制檯上生成以下輸出:−

廣告
資料結構
網路
關係資料庫管理系統
作業系統
Java
iOS
HTML
CSS
Android
Python
C 程式設計
C++
C#
MongoDB
MySQL
Javascript
PHP