> For the complete documentation index, see [llms.txt](https://afatihyavasi.gitbook.io/typescript-notlari/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://afatihyavasi.gitbook.io/typescript-notlari/handbook/tuple.md).

# Tuple

**Tuple**, türleri bilinen ancak aynı olması gerekmeyen sabit sayıda öğeye sahip bir diziyi ifade etmemize olanak tanır.

Örneğin;

```typescript
let users: [string, number, boolean];
users = ['ayse', 5, true]
```

şeklinde kullanabiliriz.
