HTML Compiler Online
Javascript Online Compiler
index.html
Change Theme
Compress code
Format code
Download Code
Clear Code
Copy Code!
RunĀ
ctrl+s or click
Output
<!Doctype html> <html lang="en"> <head> <meta charset="utf-8"> <title>Article - Concatenate string in JavaScript 4</title> </head> <body> <h2>join method in JavaScript to concatenate strings.</h2> <p>Press <kbd>F12</kbd> to open the console and see the output of the program.</p> <script> const array = ["Learn", "to", "code"]; const saperator1 = array.join(""); console.log(saperator1); const saperator2 = array.join(" "); console.log(saperator2); </script> </body> </html>
RunĀ
x
x