#programming-languages
Read more stories on Hashnode
Articles with this tag
Introduction What do you do when you want a variable to be able to take more than one type? You use union type. Union types enable you to create a...
A TypeScript Series for beginners · Introduction In this lesson, we are going to learn about the any type in TypeScript. The any type is TypeScript...
A TypeScript Series for beginners · Introduction Enums in TypeScript are special types that allows you to define special keywords and associate them with...
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...
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 Objects are one of the most common data types to work with in JavaScript. An object has key-value pairs....