Arrays/lists Flashcards
Add to end of array
arr.push(element)
Remove from start of array
arr.shift()
Remove from end
arr.pop()
Remove from middle of array
arr.splice(startIndex, deleteCount)
Find length of array
arr.length
Check if array includes a value
arr.includes(value)
Map array elements
arr.map(element => element * 2)
Filter array elements
arr.filter(element => element > 10)
Use reduce to sum elements in array
arr.reduce((accumulator, currentValue) => accumulator + currentValue, 0)
Find first element in array using find
arr.find(element => element > 10)
Find if an element in array satisfies condition
arr.some(element => element > 10)
Find if an element in array satisfies condition
arr.some(element => element > 10)
Find if every element in an array satisfies a condition
arr.every(element => element > 10)
Merge two arrays
arr1.concat(arr2)
See if array includes a value
arr.includes(element)
Join array into string
arr.join(separator)
Sort array of strings
arr.sort()
Sort array of numbers
numbers.sort((a,b) => a-b)
Loop through values using for each
words.forEach(word => {
console.log(word)
}