Skip to content

Latest commit

 

History

History
13 lines (8 loc) · 260 Bytes

tuple.md

File metadata and controls

13 lines (8 loc) · 260 Bytes

Tuple

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

Örneğin;

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

şeklinde kullanabiliriz.