Problem 2. Create a variable of type string and try to add a number to it. And use typeof operator to find the datatype of the string in last question.

let str = "string";
console.log("String ", str);    // String string
str += 56;
console.log("String with number: ", str);    // String with number: string56

console.log(typeof(str));   // string