[TypeScript] TypeScript Grammar - 02
·
Development Study/Frontend
Previous Series [TypeScript] TypeScript Grammar - 01 1. Type Annotation TypeScript uses colon ( : ) behind variables to annotate a type const myMaxHamburger: number = 3; const answer: string = "Yes I can"; const drinks: boolean = true; You can code like variable: It is essential to write this annotation, so time-map-installer.tistory.com 2. Array In this section, we are going to find out what's ..