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

Level3 lesson8 js

Answer
by

3 Answers

Swapnilyefvi
let str1 = 'ambush';
let str2 = 101;
let str3 = false;
let str4 = str2 + ' ' + str3 + str1;
console.log(typeof str4);
iamabhishek
This is the correct answer:

let str1 = 'ambush';
let str2 = 101;
let str3 = false;

let str4 = str2+" "+str3+str1;

console.log(typeof str4);
iamabhishek
Ideally your answer should be correct, can you share the error that you get?

Login / Signup to Answer the Question.