A comprehensive list of common array methods and object methods in JavaScript
Array Methods
Basic Methods
push(item)
Adds an item to the end of the array.pop()
Removes and returns the last item in the array.unshift(item)
Adds an item to the beginning of the array.shift()
Removes and returns the first item in the array.length
Returns the number of elements in the array.
Iteration Methods
forEach(callback)
Executes a provided function once for each array element.map(callback)
Creates a new array with the results of calling a function on every element.filter(callback)
Creates a new array with all elements that pass a condition.reduce(callback, initialValue)
Reduces the array to a single value.reduceRight(callback, initialValue)
Same asreduce
but iterates from right to left.some(callback)
Returnstrue
if at least one element satisfies the condition.every(callback)
Returnstrue
if all elements satisfy the condition.
Searching and Sorting
find(callback)
Returns the first element that satisfies the condition.findIndex(callback)
Returns the index of the first element that satisfies the condition.indexOf(item)
Returns the index of the first occurrence of an item.lastIndexOf(item)
Returns the index of the last occurrence of an item.includes(item)
Checks if the array contains a specific item.sort(compareFunction)
Sorts the elements of the array.reverse()
Reverses the order of elements in the array.
Modifying and Combining
concat(array)
Merges two or more arrays into a new array.slice(start, end)
Extracts a portion of the array into a new array.splice(start, deleteCount, ...items)
Adds or removes items from an array.flat(depth)
Flattens nested arrays into a single array.flatMap(callback)
Combinesmap
andflat
into a single operation.fill(value, start, end)
Fills elements with a static value.
Other Methods
join(separator)
Joins all elements into a string.toString()
Converts the array to a string.Array.isArray(value)
Checks if a value is an array.
By Nayem
Share on social media
0 Comments
Post a Comment
Your email address will not be published. Required fields are marked *