What will be the output of the console.log statement in the following code snippet?
let str1 = 'Hello';
let str2 = 'World';
console.log(`${str1} ${str2}`);
What will be the output of the console.log statement in the following code snippet?
let str1 = 'Hello';
let str2 = 'World';
console.log(`${str1} ${str2}`);