- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Repeat String in JavaScript?
To repeat string, you can use Array() along with join().
Example
Following is the code −
<!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>
To run the above program, save the file name anyName.html(index.html). Right click on the file and select the option “Open with live server” in VS Code editor.
Output
This will produce the following output: on console −
- Related Articles
- How to repeat a string in JavaScript?
- Repeat even number inside the same array - JavaScript
- How to repeat a string for a specified number of times in Golang?
- Background Repeat in CSS
- How to style background image to no repeat with JavaScript DOM?
- What is an efficient way to repeat a string to a certain length in Python?
- CSS border-image-repeat
- CSS3 Repeat Radial Gradients
- Automatic Repeat reQuest (ARQ)
- Background Repeat Using CSS
- Usage of background-repeat property in CSS
- Hyphen string to camelCase string in JavaScript
- Compressing string in JavaScript
- A Protocol Using Selective Repeat
- Sliding Window Protocol (Selective Repeat)

Advertisements