---
title: "Select Property in Array"
description: "Extract a specific property from an array of objects in TypeScript."
date: "2025-10-02"
tags: ["typescript","array","select","frontend"]
canonical: "/snippets/typescript/array/select-by"
---

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

## Select Property in Array

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