Beginner
How to Concatenate Strings in JavaScript Using Different Methods
String concatenation
1let text1 = "Hello";2let text2 = "World";3console.log(text1 + " " + text2);
String concatenation
1let text1 = "Hello";2let text2 = "World";3console.log(text1 + " " + text2);