Functions in JS

Function Declaration

function greet(name) {
    return `Hello, ${name}!`;
}
console.log(greet("Alice"));