We can also define and store functions in variables. After we've assigned a function to a variable, we can use the variable just like a function.

Great! If we'd assign a function to a variable without parentheses, the variable would store the function itself, as opposed to the value it returns.

Psst: this statement is also known as a function expression.

Wait! If we assign the function without parentheses, number will store the function itself.