Search⌘ K
AI Features

Overview

Explore the fundamental aspects of TypeScript essential for Angular applications. Understand its typing system, functions, decorators, and module structuring to write efficient and well-organized code during Angular development.

We'll cover the following...

Previously, we learned that the code of an Angular project is written in TypeScript. Writing in TypeScript and leveraging its static typing gives us a remarkable advantage over other scripting languages. This chapter is not a thorough overview of the TypeScript language. Instead, we’ll focus on the core elements and study them in detail on our journey through Angular. The good news is that TypeScript is not all that complex, and we will manage to cover most of its relevant parts.

In this chapter, we’re going to cover the following topics:

  • The history of TypeScript

  • Types

  • Functions, lambdas, and execution flow

  • Common TypeScript features

  • Decorators

  • Advanced types

  • Modules

We will first investigate the background of TypeScript and the rationale behind its creation. We will also learn about the tools and online resources available to practice with TypeScript. We’ll learn about the typing system, which is the main advantage of TypeScript, and how we can use it to create some basic types. We will expand our typing knowledge by learning how to use classes, interfaces, and advanced types in the Angular context. At the end of the chapter, we will explore how to organize the structure of an application by combining the typing system with modules.