Javascript Easy 1
š§ Code Challenge
function greet(name) {
console.log("Hello, " + name + "!");
}
greet("Alice");
Explain what this function does. Speak clearly and use keywords.
function greet(name) {
console.log("Hello, " + name + "!");
}
greet("Alice");
Explain what this function does. Speak clearly and use keywords.