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

JavaScript Level 3 Lesson 8

I am having problem with the concatenation and type of in JavaScript Level 3 Lesson 8
by

1 Answer

sam5epi0l
Here you go:

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

var str4 = str2 + ' ' + str3 + str1;
console.log(typeof str4);

Login / Signup to Answer the Question.