Javascript
Javascript
Find the maximum item of a set
This function returns the maximum value from a set. JavaScript: TypeScript:
Javascript
Find the minimum item of a set
This function returns the minimum value from a set. JavaScript: TypeScript:
Javascript
Remove an item from a set
This function removes an item from a set. JavaScript: TypeScript:
Javascript
Create a set from an array
This function creates a set from an array. The set contains all unique elements of the array. JavaScript: TypeScript:
Javascript
Convert a set to an array
This function converts a set to an array. JavaScript: TypeScript:
Javascript
Check if a set is a subset of another set
This function checks whether the first set is a subset of the second set. JavaScript: TypeScript:
Javascript
Find the intersection of two sets
This function finds the intersection of two sets, i.e., elements that are common to both sets. JavaScript: TypeScript:
Javascript
Swap the rows and columns of a matrix
This function swaps the rows and columns of a 2D array, also known as ‘transposing’ a matrix. JavaScript: TypeScript:
Javascript
Get all subsets of an array
This function generates all possible subsets of an array. JavaScript: TypeScript:
Javascript
Sort an array of numbers
This function sorts an array of numbers in ascending order. JavaScript: TypeScript: