Functions

Learn how to create, refer to and call a function.

The concept of function

Think of a function like a mathematical function giving you a relationship between input and output variables. If you don’t like maths, think of a function like a vending machine. You give it some coins and a number, and it spits out some cold coke.

Press + to interact
function add( a, b ) {
return a + b;
}

This function definition describes the relationship between its input variables a and b and the return value of the function. ...