---
title: "Throttle & Debounce Functions"
description: "Learn how to use throttle and debounce functions in TypeScript."
date: "2025-10-02"
tags: ["typescript","throttle","debounce","frontend"]
canonical: "/snippets/typescript/function/throttle-debounce"
---

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

## Throttle & Debounce Functions

<Code code={Source} lang="ts" title="throttle-debounce.ts" wrap />
