Articles in this series
Strengthen Typescript Code Legibility through Optional Chaining and Nullish Coalescing · TypeScript offers powerful features that make code more concise...
How to Sort String and Numbers in JavaScript · I was assisting a friend in constructing a sorting table with data in Typescript and he ran into some odd...
Optimizing Your Code with TypeScript Type Checking · In Typescript, we have to check for values types like boolean, string, object instance from class,...
Use the power of compiler and Typescript together · When we use types or interfaces, the typescript compiler enforces the object fit with them to avoid...
Setup your dev environment with Parcel and Typescript. · Typescript is a technology that grows every day. Companies like Slack, Airbnb, or Google are...
Sometimes we have a long list of imports, with files that come from the same place, it makes our code noisy and a bit longer, something like: import...