Username or email *
Password *
Remember Me
Log in
No products in the cart.
Defining and calling functions
Parameters and return values
Create a function that multiplies two numbers
function multiply(a, b) { return a * b; } console.log(multiply(4, 5)); // 20