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>Javascript - String concat</title> </head> <body> <h2>concat method concatenates passed string to the calling string.</h2> <script> const firstName = "Brenden"; const lastname = "Eich" document.write(firstName.concat(" ", lastname)); </script> </body> </html>
RunĀ