📄️ What to Know About: TypeScript
TypeScript is a popular programming language that is a strict syntactical superset of JavaScript, meaning that it includes all the features of JavaScript and adds additional features such as type checking. In this article, we will explore what TypeScript is, why it is useful, and how it compares to other languages.
🗃️ Setup
2 items
📄️ Conditional Statements
The If Statement
📄️ Loops
Loops are an important part of any programming language and Typescript is no exception. In this tutorial, I'll explain the different types of loops available in Typescript and how to use them.
📄️ Functions
What are functions?
🗃️ OOP With Typescript
2 items
📄️ Import/Export Across Files
In TypeScript, you can use the export keyword to make a function, class, or other value available for other files to import. And you can use the import keyword to bring in values that have been exported in other files.
📄️ Promises and Async/Await
Promises