×
×
Correct!
Concatenate the two strings to alert "Hello World!".
let str1 = "Hello ";
let str2 = "World!";
alert(str1 + str2);
Not CorrectClick here to try again. Correct!let str1 = "Hello "; let str2 = "World!"; alert(); |