3.1: Functions
Learning Objectives
By the end of this lesson, you should be able to do the following:
Define "control flow".
Understand what a function is and why we use functions.
Declare and define a function as a block of code.
Understand how to pass input to a function.
Understand how to store the output of a function.
Understand the purpose of the return keyword.
Execute a function.
Introduction
We can now start to group the code we're working with into "functions" and use functions to write more realistic, complex programs. Let's explore how functions work.
What Functions Are
A function is a collection of lines of code, also known as a "block" of code. We run that code when we write the appropriate statement to "execute" the function. A function is a type of "control flow", meaning function definitions in our code may not execute sequentially through the code file. For example, we may define a function at the top of our file, but only execute that function at the bottom of our file.
We can think of functions as "recipes" of code; a fixed set of instructions or steps, that can take in a variable input (e.g. number of dinner guests) and give a certain output (enough food for dinner), even though the instructions are statically defined. Functions have 3 key parts:
Input(s)
Pre-defined operations on the input
Output
Functions sometimes do not take in input, and sometimes do not return an output, but for now we will work with this basic structure.
Why We Use Functions
Functions are necessary to abstract complexity away from the main logic of our applications. This allows us to break problems down into ever-smaller sub-problems, simplifying the process of coding complex applications. In this module we will see 2 use-cases of functions.
Purpose-built data manipulators that take inputs and give outputs. These are sometimes called "helper" functions. We will define our functions' inputs and outputs, and all the instructions for that function will be contained in a block of code as part of the function definition.
Logic sequences that we wish to encapsulate in a "sub-routine". We do this with our
main
function.main
contains everything we want to happen when the user clicks Submit. It is common for sub-routine functions to rely on several other helper functions.
Define a Function
Define a function that "abstracts" the km-to-miles conversion we did in 2.3: Our First Program.
Start at the top of
script.js
Create a variable for our function:
var convertKmToMiles
. Note that function variable names start with a verb by convention, to distinguish them from variables storing other data types. With few exceptions such as themain
function, function names should almost always start with a verb.Assign a function definition to that variable:
var convertKmToMiles = function () {}
Note the beginning and end of the function "block" with curly braces ({}
). We will add function logic within these curly braces. Semicolons marked the end of a line of code, curly braces are used to mark the start and end of a code block.
Define what logic happens when the function is executed. In our case, we want to convert KM to miles.
Use the return
keyword to define the function's output value. For our convertKmToMiles
function, our return value is the distance in miles.
Note that the output of a function may not be the output of the overall program, because functions can call other functions. The output of the overall Coding Fundamentals starter code program is the return value of the main
function.
We define and name a function "input parameter" as distanceInKm
. Functions can have 0 or more input parameters.
All together our function looks like the following.
Functions Can Have Multiple Input Parameters
Functions can accept more than 1 input parameter, and input parameters are assigned based on position in the input parameter list, not by variable name.
For example, if we define a function with syntax like the following,
and we execute it with the following,
then inside of myFunc
, myVar1
will be assigned to a
and myVar2
will be assigned to b
. The parameter assignment has nothing to do with the name of the input variables, and everything to do with the order of the variables passed into myFunc
.
Execute a Function
The syntax to run a function is to code the function name followed by parentheses (()
). Without parentheses, the function is just a variable whose value is a function, and the function's logic will not run.
Input parameters go within the function execution parentheses. Our convertKmToMiles
function expects 1 input parameter, a distance in KM. For our function to work, we must pass this parameter to our function by specifying the parameter in the parentheses.
Let's test this function on its own outside of the Coding Fundamentals starter code.
Open Chrome Developer Tools by selecting View > Developer > JavaScript Console from the Chrome menu bar
Copy the function definition of
convertKmToMiles
into the console and hitEnter
The console should respond with an 'undefined', that is to be expected.
If the expression doesn’t return a value, the Chrome console will report undefined — this doesn’t mean anything is wrong, it’s just letting you know that the previous expression didn’t return a result.
Type the function name into the console and hit
Enter
. You should see the code block you defined.Run the function from the console again with a different input value
Use Other Input Variables
Create several variables and use them as input to your function.
Use these variables as input to our function. Paste each function call into the console and hit Enter
one by one.
Capture the Result
We can see the result of our calculation in the console and capture that value for later. Paste this code into the console:
Type in the name of the variable, result
, and press Enter
to see the given value.
Add Function to Code File
Back in script.js
, Call convertKmToMiles
from our main
function, providing input
as a parameter to convertKmToMiles
.
Other Sample Functions
Double a Number
Convert Kilograms to Pounds
Calculate Area of a Circle
Main Function
We can now better understand the main
function in our starter code. You may have noticed we currently do not execute main
from script.js
. Our starter code runs main
for us whenever we click the Submit button. The code for this mechanism is inside index.html
.
The
input
parameter ofmain
is what the user types in the input boxThe
return
value ofmain
is what gets displayed in the output box
With this in mind, assign the value of input
to myOutputValue
to see this connection. Then change the code again to assign the string value "wow hello" to myOutputValue
.
Exercises (Base)
For each app, create a new copy of the Fundamentals Starter Code folder.
For each exercise try to encapsulate each distinct operation inside a function that returns a value. For example, daysToMinutes(3)
is a function that converts days to minutes, takes a number of days as input, and returns a number of minutes.
Share your work with your section: save the code you write into another file. Name it share.js
(A file only for sharing in the community channel.) Send the code file as a snippet in your section community channel.
Run Example Code
Duplicate and run the code from this module
Paste the other function examples in instead of
convertKmToMiles
Remove the
return
statements from the examples. What happens and why? What does thereturn
statement do and how does it work?Remove the
distanceInKm
parameter from the function definition. What happens and why? Replace the parameter afterward.Change the variable name
distanceInKm
to another name everywhere. What happens and why? Change the name back todistanceInKm
afterward.
Juice Wedding
It takes 4 oranges to make a 90ml glass of orange juice. When planning your wedding, you need to know how many oranges to buy so all your guests have 1 glass of juice. The user will enter a number of guests and the app will say how many oranges are needed and how many litres of orange juice you would get. (Ref Solution)
SG Hugs
Everyone has a different gauge for how long they like to hug. The user can enter a number of seconds they like to hug on average, and the app will calculate how many years it will take to hug everyone in Singapore. You are allowed 9 hours a day to sleep and eat. (Ref Solution)
House Paint
Estimate the price of painting the interior of your home. The user will enter a dollar amount of paint per litre and the app will calculate how much it will cost.
Each room in your 6-room house has the same area to be painted: 3m x 3m. There are 6 windows and 8 doors in your designer home. Coincidentally, windows and doors all of the same size: 90cm x 150cm. Paint will cover 300 square meters per litre. You want to apply 2 coats of paint. (Ref Solution)
Train Speed
Two trains are leaving to Tokyo. Train 1 is traveling 200kph, and will reach Tokyo in 2 hours. Train 2 is newer and can travel faster, but is delayed due to a signalling fault. Build an app for Train 2's conductor calculate how fast Train 2 needs to travel to arrive at Tokyo at the same time as Train 1, based on how long it was delayed. Output the speed in kph. (Ref Solution)
Exercises (More Comfortable)
Clock
A user can enter the number of minutes past 1pm and the app will calculate the angle between the hour and minute hand. You are free to decide how else your clock will work: if the minute hand moves in 5 minute increments or moves every second, etc.
Last updated