Linguagens de programação
Tutoriais de Python, C, C++, Java, JavaScript, TypeScript, Go, R e Haskell — da sintaxe básica às técnicas avançadas.
Functions
Functions are fundamental in TypeScript. Learn how to type them properly.
Ler artigo →Interfaces
Interfaces define the shape of objects and provide a way to enforce structure in your code.
Ler artigo →Classes
TypeScript adds type annotations and access modifiers to JavaScript classes.
Ler artigo →Arrays and Tuples
Working with arrays and tuples in TypeScript.
Ler artigo →Enums
Enums allow you to define a set of named constants.
Ler artigo →Type Assertions
Type assertions tell TypeScript to treat a value as a specific type. Use with caution
Ler artigo →Union and Intersection Types
Combine types in powerful ways with union and intersection types.
Ler artigo →Beginner Level: TypeScript Fundamentals
Welcome to TypeScript This section covers the fundamentals you need to get started.
Ler artigo →Generics
Generics allow you to create reusable components that work with multiple types.
Ler artigo →Utility Types
TypeScript provides builtin utility types that transform existing types.
Ler artigo →Advanced Types
Explore more sophisticated type patterns and techniques.
Ler artigo →Modules and Namespaces
Organize and structure your TypeScript code with modules and namespaces.
Ler artigo →Decorators
Decorators provide a way to add annotations and metadata to classes, methods, and properties.
Ler artigo →Type Guards
Type guards are expressions that perform runtime checks to narrow types.
Ler artigo →Type Narrowing
TypeScript narrows types based on control flow analysis.
Ler artigo →Mapped Types Basics
Mapped types create new types by transforming properties of existing types.
Ler artigo →Conditional Types Basics
Conditional types select one of two types based on a condition.
Ler artigo →Error Handling
Handle errors in a typesafe way with TypeScript.
Ler artigo →Intermediate Level: Advanced TypeScript Features
Build on your foundation with more powerful TypeScript features.
Ler artigo →Advanced Generics
Master complex generic patterns and techniques.
Ler artigo →Conditional Types Deep Dive
Master conditional types for advanced type transformations.
Ler artigo →Mapped Types Advanced
Advanced mapped type patterns and techniques.
Ler artigo →Template Literal Types
Create types from string templates TypeScript 4.1+.
Ler artigo →Recursive Types
Types that reference themselves for complex data structures.
Ler artigo →