Parameters let you pass data into functions:
function greet(name) {
console.log(`Hello, ${name}!`)
}
greet("Alice") // Hello, Alice!
greet("Bob") // Hello, Bob!
Parameters are variables that exist only inside the function. Each call can pass different values, making the function flexible and reusable.