What will be the output of the console.log statement in the following code snippet?
let num1 = 10;
let num2 = 5;
console.log(`The sum of ${num1} and ${num2} is ${num1 + num2}`);
What will be the output of the console.log statement in the following code snippet?
let num1 = 10;
let num2 = 5;
console.log(`The sum of ${num1} and ${num2} is ${num1 + num2}`);