1234567891011121314151617 |
- <!DOCTYPE html>
- <html>
- <body>
- <h2>The concat() method joins two or more strings:</h2>
- <p id="demo"></p>
- <script>
- let text1 = "Hello";
- let text2 = "World!";
- let text3 = text1.concat(" ",text2);
- document.getElementById("demo").innerHTML = text3;
- </script>
- </body>
- </html>
|