Array Methods Flashcards
some()
tests if at least one element in the array passes the test implemented by the provided function.
Arrow Function example.
arr. some( x => x > 10) arr. some(x => val === x
concat()
returns a new array by merging two or more values/arrays.
filter()
return array with all elements that passed the test defined by the given function.
Does not change the original array.
filter() calls a provided callbackFn function once for each element in an array and constructs a new array of all the values for which callbackFn returns a value that coerces to true.
forEach()
executes a provided function once for each array element.
Does not change the original array.
Does not return anything
only using data
map()
executes a provided function once for each array element.It builds a new Array.
does not change the original array.
reduce()
The reduce() method executes a reducer function (that you provide) on each element of the array, resulting in a single output value.
(accumulator, currentValue) => accumulator + currentValue;
pop()
remove last item
shift()
remove first item
push()
add item to the end
unshift()
add item to the front
splice()
removes array items and replaces new items if provided
first start
second how many remove including start
we can use negative numbers.
slice()
returns a new array containing the specified items except the last index provided.
slice(beginning, end)
Does not modify existing array
Returns a new array
indexOf()
The indexOf() method returns the first index at which a given element can be found in the array, or -1 if it is not present.
Can be used to check if element is present in the array/
if ( arr.indexOf > -1) {}
lastIndexOf()
returns the last occurrence of the element your searching
return the index of element.
includes()
This method checks if an item is present in the array and returns a Boolean.
find()
The find() method returns the value of the first element in the provided array that satisfies the provided testing function.
The find method executes the callbackFn function once for each index of the array until the callbackFn returns a truthy value. If so, find immediately returns the value of that element. Otherwise, find returns undefined.
findIndexOf()
the findIndex() method returns the index of the first element in the array that satisfies the provided testing function. Otherwise, it returns -1, indicating that no element passed the test.
sort()
The sort() method sorts the elements of an array in place and returns the sorted array. The default sort order is ascending.
every()
every method tests whether all elements in the array pass the test implemented by the provided function
returns a boolean.
some()
some method tests whether at least one element in the array pass the test implemented by the provided function.
returns a boolean.
Key in objects
A key is like a variable name that points to a location in memory that holds a value.
JavaScript object literal
JavaScript object literal is a comma-separated list of name-value pairs wrapped in curly braces. Object literals encapsulate data, enclosing it in a tidy package.
this
THIS keyword references the calling object which provides access to the calling object’s properties.
The reserved keyword this refers to a method’s calling object, and it can be used to access properties belonging to that object.
getters
access properties in objects
setters
change properties in objects. need at least one paramenter
factory function
returns objects.
Object.key()
Returns array key names
Object.entries()
Returns array of key-value pairs. Lets us loop over objects easily.
Object.assign()
merge objects together.
Object.values()
Returns values of objects.
Objects Data Type
An object is a built-in data type for storing key-value pairs. Data inside objects are unordered, and the values can be of any type.
Array Data Type
Arrays let us gather data items into an ordered list.
for in loops
Itereate over keys of an object.
callback function
a function passed into another f as an argument.