What will be the output of the console.log statement in the following code snippet?
let firstName = 'Bob';
let lastName = 'Smith';
console.log(`Full Name: ${firstName} ${lastName}`);
What will be the output of the console.log statement in the following code snippet?
let firstName = 'Bob';
let lastName = 'Smith';
console.log(`Full Name: ${firstName} ${lastName}`);