Signup/Sign In
Ask Question
Not satisfied by the Answer? Still looking for a better solution?

Javascript level6/lesson4

what is the correct syntax for console.log
by

1 Answer

iamabhishek
Here is the correct answer:

let str1 = "Welcome to";
let str2 = " Our JavaScript Course!";

// write your code here
let str3 = str1 + str2;
console.log(str3.length);

Login / Signup to Answer the Question.