Skip to content

Instantly share code, notes, and snippets.

@glaucia86
Created August 26, 2018 22:00
Show Gist options
  • Select an option

  • Save glaucia86/da9bf12a1031a10174b86782aab41d4e to your computer and use it in GitHub Desktop.

Select an option

Save glaucia86/da9bf12a1031a10174b86782aab41d4e to your computer and use it in GitHub Desktop.
/**
* Arquivo: tuple-basic.ts
* Author: Glaucia Lemos
* Data: 23/08/2018
*/
// Aqui estamos declarando x com um tipo 'tupla'
let x: [string, number];
// Aqui não haverá erro!
x = ['Oi! Tudo bem?', 10];
// Já aqui.... Not okay! :(
x = [10, 'Oi Tudo bem?'];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment