---
title: "Sort Higher-Order Function"
description: "Implement a higher-order function for sorting arrays in TypeScript."
date: "2025-10-02"
tags: ["typescript","array","sort","frontend"]
canonical: "/snippets/typescript/array/sort"
---

import { Code } from '@astrojs/starlight/components'
import Source from './sort.ts?raw'

## Sort Higher-Order Function

<Code code={Source} lang="ts" title="sort.ts" wrap />
