Functions are things in JavaScript (and most programming languages) that take an input, do some work and then give an output - or things that you can ask a question of and you'll get an answer. This is the way that you create a function in JavaScript:
function addTwoNumbers(firstValue, secondValue) {
let answer = firstValue + secondValue;
return answer;
}
let myAnswer = addTwoNumbers(3, 5);
//myAnswer is now 8
We have a function called addTwoNumbers (camelCase!), which takes two numbers as parameters, adds them together inside the function and then returns the answer. Some functions don't have any inputs and some don't have any outputs, but they all do something in the middle, otherwise there would be no point in calling them. The values you put into parameters are called arguments.