/*
Function
- What Is Function ?
- User-Defined vs Built In
- Syntax + Basic Usage
- Example From Real Life
- Parameter + Argument
- Practical Example
*/
function sayHello(userName) {
console.log(`Hi ${userName}`);
}
sayHello("Osama");
sayHello("Sayed");
sayHello("Ali");
You have not completed all required lessons and assessments.