Articles in this series
Introduction TypeScript has become increasingly popular among programmers in recent times. In the 2022 StackOverflow Developer Survey, TypeScript was...
What are data types? In programming, values are classified into types. The type of a value regulates its behavior. It also determines what operations...
A TypeScript series for beginners · Introduction Objects are one of the most common data types to work with in JavaScript. An object has key-value pairs....
Introduction Arrays are popular and useful in programming. They allow you to create and store an ordered list of data of different types. An array can...
A TypeScript series for beginners. · Introduction A Tuple Type in TypeScript is a special type of array. Tuples allow the expression of an array that...
A TypeScript Series for beginners · Introduction Enums in TypeScript are special types that allows you to define special keywords and associate them with...