Functions Flashcards
What is a general definition of a function?
A function is a block of code that executes tasks in a specific order.
How do you declare a function in JavaScript
function [functionName] (parameters) {
[workingCode]
}
What are parameters of a function?
Parameters are optional, comma separated variables that you wish to declare for the function.
These parameters can be assigned values when you use the function.
How can you use a function?
You can use a function by calling (evoking, executing) it with its name and the brackets that surround any parameters (even if there are no parameters).
functionName(parameters)
When do parameters become arguments in functions execution.
Parameters become arguments when we give actual values during a function execution.
What is the difference between parameters and arguments when using functions?
Parameters - variables used when declaring a function.
Arguments - values used in place of parameters when invoking a function.
What is the result of defining a parameter in a function but not passing in an argument during execution
The result is that the parameter value will be ‘undefined’.
What is returned from a function if a return statement is not included in the code block?
Undefined is returned
What types of values can JavaScript pass around?
JavaScript can pass Primitives and Objects.
Expressions need to be evaluated to either of these two values before being passed.
What happens if you pass a function with parameters as an argument to another function?
The function argument needs to be evaluated before being used in the calling function (in this case it is an expression)
What is the term for a function (without parameters) that is passed as an argument to another function.
In this case the function is a callback (because you call-it-back within the code-block of the calling function).
What is function hoisting in JavaScript.
Function hoisting is when function declarations are moved to the top of the scope regardless of their place in the code.
Should we rely on function hoisting?
No, we should always declare our functions before invoking them.
What is a function expression?
A function expression is when a variable is defined using an anonymous function.
Are function expressions hoisted?
No, variables defined with a function are not hoisted in the scope.
What is the syntax of an arrow function?
(param1, param2) => { code-block }
When do we need to use parenthesis around parameters in an arrow function?
When there are zero, or more than one parameter.
What is the syntax for an arrow function with one parameter?
param1 = > {code-block}
If your arrow function has zero parameters, what can you replace the parenthesis with?
An underscore _
How do we use implicit returns in arrow functions
Implicit returns are used when the function occupies one line of code and includes no curly braces { }
What data type are functions in JavaScript?
Functions are objects in JavaScript.
How is it useful that functions are objects in JavaScript?
Because functions are objects, they can be a value to an object property.
What is another name for a value of an object property (or key) that is also a function?
These functions are called methods.
What is the syntax for calling a method?
objectName.propertyName()
or
objectName‘propertyName’
The parenthesis are needed to invoke the function
Can methods include parameters?
Yes, the definition of a function as a method allows for parameters?
Can you pass methods arguments?
Yes, depending on the method, they will accept arguments.
Can you use functions as a variable?
Yes, functions can defined as a variable - that is a function expression.
What is a callback function?
A callback function, or callback, is a function passed to another function as an argument, to be executed later.
Give an example of a commonly used callback function.
The event handler of an event listener is a callback function, it is passed to the eventlistener to be called once an event has occured
How could we rewrite an event listener to explicitly show that a callback is being used?
function callback(){do code}
button.addEventListener(‘click’, callback)
What are two situations where we might want to use callback functions?
- When we want to allow code to be easily swapped
- To prevent blocking situations in asynchronous code
What are two benefits of callback functions?
They allow code to be easily swapped by changing which callback is used.
Callback functions prevent blocking operations in asynchronous code
How can we easily swap code using a callback function?
If we create a function expression we can then pass the expression into the function as a callback. By changing which expression we use we swap which code is run during the callback
Give an example of commonly seen asynchronous code in JavaScript.
An event listener is an example of asynchronous code because it does not execute immediately when found in the code.
What is synchronous code in JavaScript?
Synchronous code runs in a top-to-bottom, left-to-right manner in the executable file.
What is the idea of JavaScript being single threaded?
The idea is that JavaScript can only be performing one block of code at a time.
What is blocking in JavaScript?
Blocking is the behavior of only running one part of a code base at a time. If something has not completed, nothing else can be undertaken.
What is the event loop in JavaScript?
How many parts does the event loop have?
The event loop has three parts:
- The call-stack: basically a to-do list of code that needs to run
- The web-api: a waiting-list of code that is awaiting an event
- The event queue: when a waiting-list result happens the continuation step gets added to the event queue.
The event loop is how JavaScript decides what it need to execute at any given time.
How can we set a default value for a parameter in a function?
We can set the parameter = to some value:
function sayName(name = ‘Stranger’){ }
What is a helper function?
A helper function is a function called within another function’s code body
How do we pass arguments to a helper function
We can pass arguments to a helper function by defining them as parameters in the ‘base’ function. The parameters must have the same name as in the helper function.