JavaScript Iterators Flashcards

1
Q

What is the “.forEach()” Method?

A

The “.forEach()” method executes a callback function on each of the elements in an array in order.

In the code example below, the callback function containing a “console.log()” method will be executed “5” times, once for each element.

Example:
const numbers = [28, 77, 45, 99, 27];

numbers.forEach (number => {
console.log(number);
});

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the “.reduce()” Method?

A

The “.reduce()” method iterates through an array and returns a single value.

In the code example below, the “.reduce()” method will SUM UP all the elements of the array. It takes a callback function with two parameters (“accumulator, currentValue”) as arguments. On each iteration, “accumulator” is the value returned by the last iteration, and the “currentValue” is the current element. Optionally, a second argument can be passed which acts as the initial value of the accumulator.

Example:
const arrayOfNumbers = [1, 2, 3, 4];

const sum = arrayOfNumbers.reduce ((accumulator, currentValue) => {
return accumulator + currentValue;
});

console.log(sum); // 10

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the “.filter()” Method?

A

The “.filter()” method executes a callback function on each element in an array. The callback function for each of the elements must return either “true” or “false”. The returned array is a new array with any elements for which the callback function returns “true”.

In the example code below, the array “filteredArray” will contain all of the elements of “randomNumbers” but “4”.

Example:
const randomNumbers = [4, 11, 42, 14, 39];
const filteredArray = randomNumbers.filter(n => {
return n > 5;
});

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is the “.map()” Method?

A

The “.map()” method executes a callback function on each element in an array. It returns a new array made up of the return values from the callback function.

The original array does not get altered, and the returned array may contain different elements than the original array.

In the example code below, the “.map()” method is used to add “‘joined the contest.’” string at the end of each element in the “finalParticipants” array.

Example:
const finalParticipants = [‘Taylor’, ‘Donald’, ‘Don’, ‘Natasha’, ‘Bobby’];

// add string after each final participant
const announcements = finalParticipants.map(member => {
return member + ‘ joined the contest.’;
})

console.log(announcements);

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What are Callback Functions?

A

In JavaScript, a callback function is a function that is passed into another function as an argument. This function can then be invoked during the execution of that higher order function (that it is an argument of).

Since, in JavaScript, functions are objects, functions can be passed as arguments.

Example:
const isEven = (n) => {
return n % 2 == 0;
}

let printMsg = (evenFunc, num) => {
const isNumEven = evenFunc(num);
console.log(The number ${num} is an even number: ${isNumEven}.)
}

// Pass in isEven as the callback function
printMsg(isEven, 4);
// Prints: The number 4 is an even number: True.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

What are High-Order Functions?

A

A “higher-order function” is a function that accepts functions as parameters and/or returns a function.

In JavaScript, functions can be assigned to variables in the same way that strings or arrays can. They can be passed into other functions are parameters or returned from them as well.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Why are JavaScript Functions known as First-Class Objects?

A
  • They have built-in properties and methods, such as the “name” property and the “.toString()” method.
  • Properties and methods can be added to them.
  • They can be passed as arguments and returned from other functions.
  • They can be assigned to variables, array elements, and other objects.

Examples:
//Assign a function to a variable originalFunc
const originalFunc = (num) => { return num + 2 };

//Re-assign the function to a new variable newFunc
const newFunc = originalFunc;

//Access the function’s name property
newFunc.name; //’originalFunc’

//Return the function’s body as a string
newFunc.toString(); //’(num) => { return num + 2 }’

//Add our own isMathFunction property to the function
newFunc.isMathFunction = true;

//Pass the function as an argument
const functionNameLength = (func) => { return func.name.length };
functionNameLength(originalFunc); //12

//Return the function
const returnFunc = () => { return newFunc };
returnFunc(); //[Function: originalFunc]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly