completion percentmodule percent complete background5%
Lesson 1 of 2

Javascript Loops and Functions

content header icon
JavaScript Functions

Passing Values to Functions with Arguments

Parameters are variables that act as placeholders for the values that are to be input to a function when it is called. When a function is defined, it is typically defined along with one or more parameters. The actual values that are input (or "passed") into a function when it is called are known as arguments.

Here is a function with two parameters, param1, and param2:

jsx
1 2 3 function testFun(param1, param2) { console.log(param1, param2); }

Then we can call testFun like this: testFun("Hello", "World");. We have passed two string arguments, Hello and World. Inside the function, param1 will equal the string Hello and param2 will equal the string World. Note that you could call testFun again with different arguments and the parameters would take on the value of the new arguments.

Step 2/9