Online HTML Editor
Javascript Online Compiler
index.html
Change Theme
Compress code
Uncompress code
Download Code
Clear Code
Copy Code!
RunĀ
Click to run or ctrl+s
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Article - JavaScript repeat string method 6</title> </head> <body> <h2>Using <code>Array.join</code> method to repeat string like <code>repeat()</code> method.</h2> <p>Press <kbd>F12</kbd> to open the console and see the output of the program.</p> <script> const str = "tick tock, "; const times = 5; console.log(Array(times + 1).join(str)); // repeat string for 5 times </script> </body> </html>
RunĀ