---
title: "Calculate the quotient and remainder of a division"
description: "Perform division and return both quotient and remainder in TypeScript."
date: "2025-10-02"
tags: ["typescript","math","division","frontend"]
canonical: "/snippets/typescript/number/divmod"
---

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

## Calculate the quotient and remainder of a division

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