JavaScript snippets¶
536 short, self-contained JavaScript functions. Grouped by category below.
Arrays¶
Objects¶
Functions¶
Strings¶
Math & Numbers¶
Date & Time¶
Browser & DOM¶
Types & Checks¶
Sorting algorithms¶
| Snippet | Description |
|---|---|
| bubbleSort | O(n²) comparison sort |
| bucketSort | Distribution sort |
| heapsort | O(n log n) in-place sort |
| insertionSort | O(n²), efficient for small inputs |
| mergeSort | O(n log n) divide-and-conquer sort |
| quickSort | O(n log n) average, in-place |
| selectionSort | O(n²) selection sort |
| binarySearch | O(log n) search on sorted arrays |