TypeScript data types
Published on
TypeScript is a syntactic superset of JavaScript, adding additional syntax on top of vanilla JavaScript allowing us to statically check types. It allows us to catch type errors early, while writing the code, instead of the user encountering bugs at runtime. It brings JavaScript closer to statically typed languages like Java and others, while still keeping the interpreted nature of JavaScript.
Read more...