TypeScript Variables
last modified March 3, 2025
Variables in TypeScript store data with strict type annotations. They enhance JavaScript variables by adding type safety and better tooling support. This tutorial explores variable declarations, type annotations, and best practices through practical examples.
Basic Variable Declarations
TypeScript variables can be declared using let
, const
,
or var
. This example shows basic variable declarations with types.
let age: number = 30; const name: string = "Alice"; var isActive: boolean = true; console.log(age, name, isActive); // Output: 30 Alice true
TypeScript enforces type annotations, ensuring variables hold the correct data types throughout their lifecycle.
Type Inference
TypeScript infers types when variables are initialized without explicit annotations. This reduces redundancy while maintaining type safety.
let score = 95; // TypeScript infers `number` const message = "Hi"; // TypeScript infers `string` console.log(score, message); // Output: 95 Hi
Type inference works for primitive types, arrays, and objects. Explicit annotations are recommended for complex types.
Union Types
Variables can hold multiple types using union types. This is useful for flexible data handling.
let id: string | number; id = "ABC123"; console.log(id); // Output: ABC123 id = 123; console.log(id); // Output: 123
Union types allow variables to switch between specified types, providing flexibility while maintaining type safety.
Literal Types
Literal types restrict variables to specific values. This is useful for enumerations or fixed sets of values.
let status: "active" | "inactive"; status = "active"; console.log(status); // Output: active // status = "pending"; // Error: Type '"pending"' is not assignable
Literal types ensure variables only hold predefined values, reducing runtime errors.
Arrays and Tuples
Arrays and tuples store collections of values. TypeScript enforces element types for arrays and fixed structures for tuples.
let numbers: number[] = [1, 2, 3]; let person: [string, number] = ["Alice", 30]; console.log(numbers); // Output: [1, 2, 3] console.log(person); // Output: ["Alice", 30]
Arrays allow dynamic collections, while tuples enforce fixed-length structures with specific types.
Objects and Interfaces
Objects store key-value pairs. Interfaces define the structure of objects for type safety.
interface User { name: string; age: number; } let user: User = { name: "Bob", age: 25 }; console.log(user); // Output: { name: "Bob", age: 25 }
Interfaces ensure objects adhere to predefined structures, improving code readability and maintainability.
Enums
Enums define a set of named constants. They improve code readability by replacing magic numbers or strings.
enum Status { Active = "ACTIVE", Inactive = "INACTIVE", } let currentStatus: Status = Status.Active; console.log(currentStatus); // Output: ACTIVE
Enums provide a structured way to manage constants, reducing errors and improving code clarity.
Type Aliases
Type aliases create custom types for reuse. They simplify complex type definitions and improve code organization.
type Point = { x: number; y: number; }; let origin: Point = { x: 0, y: 0 }; console.log(origin); // Output: { x: 0, y: 0 }
Type aliases make code more readable by abstracting complex type definitions into reusable components.
Best Practices
- Use
const
for Constants: Preferconst
for immutable values - Explicit Types: Use explicit types for clarity in complex scenarios
- Avoid
var
: Preferlet
andconst
overvar
- Type Inference: Leverage type inference for simple cases
- Interfaces for Objects: Use interfaces to define object structures
Source
TypeScript Variables Documentation
This tutorial covered TypeScript variables with practical examples. Implement these patterns to write safer, more maintainable code.
Author
List all TypeScript tutorials.