Skip to content

Instantly share code, notes, and snippets.

@pointofpresence
Last active March 31, 2024 20:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pointofpresence/96941626305222df85685f8657710714 to your computer and use it in GitHub Desktop.
Save pointofpresence/96941626305222df85685f8657710714 to your computer and use it in GitHub Desktop.
TS: Кортежи
Basic tuples
let myTuple: [ string, number, boolean? ];
myTuple = [ 'test', 42 ];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment