What value is obtained by executing the following code?
let x = "Hello";
let y = "World";
console.log(`${x} ${y}` === "Hello World");
What value is obtained by executing the following code?
let x = "Hello";
let y = "World";
console.log(`${x} ${y}` === "Hello World");