๐๏ธ concat()
concat() populates a new array with the concatenation of its calling array and its arguments.
๐๏ธ every()
every() returns true if all its calling array's items pass its function argument's test. Otherwise, it returns false.
๐๏ธ filter()
filter() creates a new array that contains all the calling array's elements that passed the test specified by the method's argument.
๐๏ธ find()
find() finds the calling array's element that first passes the test specified by the method's function argument.
๐๏ธ findIndex()
findIndex() finds the index of the calling array's element that first passes the test specified by the method's function argument.
๐๏ธ forEach()
The forEach() method invokes its argument once for each item of an existing array.
๐๏ธ includes()
includes() checks if its calling array includes the method's first argument.
๐๏ธ indexOf()
indexOf() searches its calling array for the first occurrence of the method's string argument.
๐๏ธ join()
join() creates a new string by using a comma, or a user-defined separator, to join the elements of an array object.
๐๏ธ lastIndexOf()
lastIndexOf() searches its calling array for the last occurrence of the method's argument.
๐๏ธ map()
map() creates a new array that contains the result of invoking map()'s function argument on each item of the calling array.
๐๏ธ pop()
JavaScript's pop() method removes and returns its calling array's last item. It does not accept any argument.
๐๏ธ push()
JavaScript's push() method adds its arguments to the end of its calling array and returns the calling array's new length.
๐๏ธ reduce()
Whenever you use reduce() on an array, the method uses its function argument to reduce its calling array's items to a single value.
๐๏ธ reverse()
reverse() reverses an array so that its first item becomes the last and its last element becomes the first.
๐๏ธ shift()
JavaScript's shift() method removes and returns its calling array's first item. It does not accept any argument.
๐๏ธ slice()
JavaScript's slice() method duplicates a specified part of its calling array into a new arrayโwithout altering the original array.
๐๏ธ some()
some() returns true if some of its calling array's items pass its function argument's test. Otherwise, it returns false.
๐๏ธ sort()
sort() sorts its calling array's items in ascending (or descending) order and returns the sorted array.
๐๏ธ splice()
JavaScript's splice() method alters its calling array by adding or removing a specific number of items to/from it.
๐๏ธ unshift()
JavaScript's unshift() method adds its arguments to the beginning of its calling array and returns the calling array's new length.