---
title: "Find Min Value in Array"
description: "Identify the element in an array with the lowest value for a specified key in TypeScript."
date: "2025-10-02"
tags: ["typescript","array","min","frontend"]
canonical: "/snippets/typescript/array/min-by"
---

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

## Find Min Value in Array

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