Javascript
Javascript
Swap two array items
This function swaps two items in an array based on their indices. JavaScript: TypeScript:
Javascript
Get the sum of an array of numbers
This function calculates the sum of all the numbers in an array. JavaScript: TypeScript:
Javascript
Get union of arrays
This function returns an array that contains all unique elements of two or more arrays. JavaScript: TypeScript:
Javascript
Group an array of objects by a key
This function groups an array of objects by a certain key. JavaScript: TypeScript:
Javascript
Intersperse element between elements
This function intersperses a specific value between the elements of an array. JavaScript: TypeScript:
Javascript
Partition an array based on a condition
This function partitions an array into two arrays based on a condition. JavaScript: TypeScript:
Javascript
Get all arrays of consecutive elements
This function returns an array of arrays, each of which contains a series of consecutive numbers from the original array.…
Javascript
Find the closest number from an array
This function finds the number in an array that is closest to a given target number. JavaScript: TypeScript:
Javascript
Get indices of a value in an array
This function returns all the indices of a specified value in an array. JavaScript: TypeScript:
Javascript
Find the maximum item of an array
This function finds the largest number in an array. JavaScript: TypeScript: