#typescript
Read more stories on Hashnode
Articles with this tag
Function overloading in TypeScript is the ability of a function to be defined with multiple signatures, each defining the number and types of...
Type Guards are a TypeScript technique used to get information about the type of a variable, usually within a conditional or functional block. Type...
Zod is a TypeScript-first schema declaration and validation library. Zod tries to address TypeScript blindspot. TypeScript only does static type...
SWC is a fast and efficient compiler and bundler written in Rust. SWC can be used for minification, bundling, compiling and more. It is similar to...
Typescript has a flexible type system that allows users to create new types. Additionally, with the help of utility types, developers can transform...
TypeScript access modifiers change the visibility and accessibility of methods and properties of a class. TypeScript decides the scope of property or...