// Functions are just tricks or commands you teach your computer! // This is the instructions on WHAT you want your computer to do function sayMyName(name) { console.log(name) } // This is you TELLING your computer what to do sayMyName('Qazi') // What would this function print out? sayMyName('Lance') // BONUS: How come these two function calls print two different names if they are both called sayMyName? // Remember this function? function sum(a,b) { return a+b } let result = sum(9,10) // What would this print out? How does "return" work in the function? console.log(result)