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