Show Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <title>JavaScript Join Two or More Strings</title> </head> <body> <script> let hello = "Hello"; let world = "World"; let greet = hello + " " + world; document.write(greet + "<br>"); // Prints: Hello World let wish = "Happy"; wish += " New Year"; document.write(wish); // Prints: Happy New Year </script> </body> </html>