Skip to content

Instantly share code, notes, and snippets.

@arttuladhar
Created September 9, 2019 17:55
Show Gist options
  • Save arttuladhar/2f89b788729974a01ab9e2d9de881aa4 to your computer and use it in GitHub Desktop.
Save arttuladhar/2f89b788729974a01ab9e2d9de881aa4 to your computer and use it in GitHub Desktop.
/* Three Basic Types in TypeScript */
let isDone: boolean = false;
let lines: number = 42;
let firstName: string = "Aayush";
/* Using Derived from Variables */
let derivedIsDone = false;
let derivedLines = 42;
let derivedfirstName = "Anders";
/* Use const keyword for Constants */
const numCats = 23;
numCats = 25;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment