Loading...
function greet(name) {
const prefix = "Hello";
const msg = prefix + " " + name;
console.log(msg);
}
greet("Alice");
empty
No output yet.