What is the result of the following code?
function greet(name) {
return `Hello ${name}`;
}
const message = greet("Alice");
console.log(message);
What is the result of the following code?
function greet(name) {
return `Hello ${name}`;
}
const message = greet("Alice");
console.log(message);