Why you should love TypeScript - A practical guide
Learn about the new and awesome features of Typescript. See how Typescript can help with both React and Angular. Make your React coding experience even better with static Types. See what are the practical benefits while not being a 'type' nazi.
JavaScript - upto ES2019(ES10) JavaScript that scales Optional static typing support Transpiles to JavaScript Maintained by Microsoft with major collaboration from Google Great editor and IDE support
c: Color = Color.Green; enum Color {Red = 1, Green = 2, Blue = 4} let c: Color = Color.Green; enum Color {Red = "RED", Green = "GREEN", Blue = "BLUE"} let c: Color = Color.Green;