Skip to content

Instantly share code, notes, and snippets.

View Atul9's full-sized avatar
πŸ‘¨β€πŸ’»
Coding

Atul Bhosale Atul9

πŸ‘¨β€πŸ’»
Coding
View GitHub Profile
@Atul9
Atul9 / learn_typescript.md
Created April 26, 2020 14:14 — forked from ekas/learn_typescript.md
Let's Gear Up for TypeScript

πŸš€ πŸš€ Let's Gear Up for TypeScript πŸŽ‰ πŸŽ‰

TypeScript is a typed superset of JavaScript that compiles to plain JavaScript. Any browser. Any host. Any OS. Open source.

Basic Types

  • Boolean
let isDone: boolean = false;