Call a function by adding parentheses after its name:
function announce() {
console.log("Welcome!")
}
announce // Function reference (doesn't run)
announce() // Function call (runs the code)
Without parentheses, you're referring to the function as a value. With parentheses, you're executing it. This distinction matters when passing functions to other functions.