---
title: "Get the first and last date of the month"
description: "Retrieve the first and last dates of a month in TypeScript."
date: "2025-10-02"
tags: ["typescript","date","month","frontend"]
canonical: "/snippets/typescript/date/first-last-date-of-month"
---

import { Code } from '@astrojs/starlight/components'
import Source from './first-last-date-of-month.ts?raw'

## Get the first and last date of the month

<Code code={Source} lang="ts" title="first-last-date-of-month.ts" wrap />
