Pages by Liubomyr

2 public pages shared

TypeScriptgeneral

Interview Questions

TypeScript Interview Questions Comprehensive TypeScript interview questions covering type system, generics, utility types, and best practices: Fundamentals 1. What is TypeScript? TypeScript is a typed…

Updated Mar 28, 2026
View
TypeScriptgeneral

Advanced Types (Generics & Utility Types)

TypeScript Advanced Types Generics // Generic function function identity<T>(arg: T): T { return arg; } const num = identity<number>(42); // Explicit const str = identity('hello'); // Inferred // Gener…

Updated Mar 3, 2026
View