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

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

## Find Max Value in Array

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