Share:
Hi all,
I’m new to TypeScript and I’m confused about when to use type inference and when to explicitly annotate types. Can someone explain the differences and provide examples of best practices for using type inference and type annotations in TypeScript?
Hide Responses
Hello,
In TypeScript, use type inference for simple cases and type annotations for clarity and complex types:
let message = "Hello, World!"; // inferred as string
function greet(name: string): string {
return `Hello, ${name}`;
}
interface User {
id: number;
name: string;
}
const user: User = { id: 1, name: "John" };
function identity<T>(arg: T): T {
return arg;
}
let output = identity<string>("myString");
Balancing type inference and type annotations improves code readability and type safety in TypeScript.
Emily Parker
9 months ago