© 2023 Hashnode
#type-inference
We've all been there before. You have a function you want to call, and a variable you want to call it with, but you just don't want to manually write instantiations when all the needed info is (probably) there! Warning - This is not particu…
This is a continuation from the previous blog post What is TypeScript, Where we explained what TypeScript is, and everything regarding TypeScript, in this blog, we are simply going to be explaining ho…
Introduction/What is TypeScript TypeScript is a programming language that is built on top of JavaScript. It is commonly refer to as a syntactical superset of JavaScript. TypeScript lets you assign op…
In TypeScript, there are some types that are composed of multiple other types. We can refer to them as compound types. A promise for example, is a compound type because it’s composed of two types. The first being the Promise itself, and the…
Welcome to the series "Java Coding"; brought to you by "Coding Mantis"! We live in a world that needs to have everything labeled in order to define what anything is and how it behaves, and concretely …