Guest User

Untitled

a guest
Sep 24th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. let tuple: [string, number];
  2. tuple = ["hello", 10]; // OK
  3. tuple = [10, "hello"]; // Error
  4. let str = tuple[0]; // string
  5. let num = tuple[1]; // number
Add Comment
Please, Sign In to add comment