Skip to main content

Tuple

Tuple

  • Tuple are special type exclusive to typescript
  • Tuples are arrays of fixed length and order of types
let myTuple:[number,string];
myTuple = [8, "test"];

type HttpResponse = [number,string];
const goodRes:HttpResponse = [200,"OK"];
const badRes:HttpResponse = [404,"Not Found"];