---
title: "Multiply an array of numbers"
description: "Compute the product of an array of numbers in TypeScript."
date: "2025-10-02"
tags: ["typescript","math","product","frontend"]
canonical: "/snippets/typescript/number/product"
---

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

## Multiply an array of numbers

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