Exercise:
Use the concat() method to join the two strings: str1 and str2.
Edit This Code:
See Result »
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> var str1 = "Hello "; var str2 = "World!"; </script> </body> </html>
Result:
Show Answer
Correct Code:
<!DOCTYPE html> <html> <body> <p id="demo">Display the result here.</p> <script> var str1 = "Hello "; var str2 = "World!"; document.getElementById("demo").innerHTML = str1.concat(str2); </script> </body> </html>
Correct Result:
Hide Answer
Privacy Policy