What is the result of the following expression?
function greet(name, age) {
console.log(`Hello, ${name}! You are ${age} years old.`);
}
greet("John", 25);
What is the result of the following expression?
function greet(name, age) {
console.log(`Hello, ${name}! You are ${age} years old.`);
}
greet("John", 25);