Typescript The Difference between TypeScript and Javascript TypeScript is the strongly typed version of Javascript, and it's growing more and more popular. Let's learn about the differences between Javascript and Typescript.
🤔 The Difference between TypeScript Interfaces and Types Typescript TypeScript has two ways to create new custom types - interfaces and types. Let's look at the differences between both..
🔩 How TypeScript Default Parameters Work Typescript TypeScript uses default parameters a lot like how they work in Javascript. Let's look at how you can use them to add more safety to your code.
⚙️ How TypeScript Conditional Types Work Typescript Conditional types in TypeScript let us check if a type conforms to a certain condition, and return types based on that.
TypeScript Array Type Typescript Arrays are fundamental in both TypeScript and Javascript, so let's look at how to define Array types in TypeScript.
Type Casting in TypeScript Typescript Sometimes in TypeScript, variables can have unknown types. Let's look at how we can solve this problem with type casting..
TypeScript Optional Parameters Typescript Functions in TypeScript are different than Javascript in that all parameters are required by default. Let's look at how to make parameters optional in TypeScript.
How the typeof Operator works in TypeScript Typescript Typeof already has vanilla Javascript functionality, but TypeScript gives it a few extra features. Let's look at how it works.
How Intrinsic Type Manipulations work in TypeScript Typescript TypeScript provides intrinsic type manipulations to let us change our strings into different formats, like uppercase, lowercase, or capitalized versions of themselves. Let's look at how they work.
How Template Literal Types work in TypeScript Typescript Template literal types let us enforce certain types in TypeScript in the same way we use template literals in normal Javascript. Let's look at how they work.
How to convert a String to a Number in TypeScript Typescript It can be confusing in strongly typed languages switching between types. Let's look at how to convert a string to a number in TypeScript
How the TypeScript ReturnType Type works Typescript The ReturnType utility Type in TypeScript lets us take the outputs of a function, and codify a new type based on that. Let's look at how it works.