Menu
×
×
Correct!
Exercise:Concatenate the two strings to alert "Hello World!".
var str1 = "Hello ";
var str2 = "World!";
alert(str1 + str2);
Not CorrectClick here to try again. Correct!Next ❯var str1 = "Hello "; var str2 = "World!"; alert(); |