#30daysoftypescript hasil pencarian
๐ Day 27 โ Publishing Typed Libraries in TypeScript 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ When you publish properly typed libraries, developers love you. #TypeScript #30DaysOfTypeScript
๐ง Day 19 โ DOM & Node Types 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ TypeScript doesnโt just help you write safer code, it helps you write safer environment-specific code. #30DaysOfTypeScript #TypeScript
๐ง Day 15 โ Conditional Types in TypeScript 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ Conditional Types let your types branch โ that is, choose between two possible outcomes based on a condition. #TypeScript #30DaysOfTypeScript
๐ง Day 14 โ Utility Types II (Mapped Types) 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ A Mapped Type lets you create a new type by taking the keys of another type and transforming them in some way. #TypeScript #30DaysOfTypeScript
๐งฉ Day 22 โ Runtime Validation with Zod 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ TypeScriptโs compiler wonโt save you at runtime โ but tools like Zod (or io-ts) bridge the gap beautifully. #TypeScript #Zod #30DaysOfTypeScript
๐ Day 20 โ Async & Promises 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ asynchronous programming โ promises, async/await, and typing your asynchronous functions safely with TypeScript... #30DaysOfTypeScript #TypeScript
๐ฆ Day 26 โ Advanced TypeScript Config & Path Aliases 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ Many developers write TypeScript for years without ever touching tsconfig.json beyond the default.... #TypeScript #PathAliases #30DaysOfTypeScript
๐ง Day 14 โ Utility Types II (Mapped Types) 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ A Mapped Type lets you create a new type by taking the keys of another type and transforming them in some way. #TypeScript #30DaysOfTypeScript
๐ง Day 13 โ Utility Types I (Built-ins) 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ Covered 20+ TypeScript utility types โ from Partial & Pick to Awaited & ReturnType. These tiny built-ins reshape, filter, and reflect types so you write less code withโฆ
๐ง Day 9 โ Type Narrowing & Control-Flow Analysis Type Narrowing & Control-Flow Analysis are how TypeScript turns โmaybeโ types into the exact thing you can safely use.... Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypescriptIn30Days #30DaysOfTypeScript
๐ง Day 10/30: type vs interface Prefer type for unions & utilities; interface for OO/merge cases. Both describe shapesโโโchoose the one that fits your intent. Full Guide ๐ medium.com/@devFemzy/day-โฆ ย #TypeScript #30DaysOfTypeScript
๐ง Day 9 โ Type Narrowing & Control-Flow Analysis Type Narrowing & Control-Flow Analysis are how TypeScript turns โmaybeโ types into the exact thing you can safely use.... Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypescriptIn30Days #30DaysOfTypeScript
๐ง Day 11/30 โ Generics Basics Write reusable functions without losing type safety. <T> lets your code stay flexible โ but still smart. Letโs master Generics ๐ medium.com/@devFemzy/day-โฆ #TypeScript #30DaysOfTypeScript
๐ง Day 10/30: type vs interface Prefer type for unions & utilities; interface for OO/merge cases. Both describe shapesโโโchoose the one that fits your intent. Full Guide ๐ medium.com/@devFemzy/day-โฆ ย #TypeScript #30DaysOfTypeScript
๐ง Day 12/30: Generic interfaces/classes How generics power interfaces and classes, and how default type parameters make our APIs safer and more convenient. Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #30DaysOfTypeScript
๐ง Day 11/30 โ Generics Basics Write reusable functions without losing type safety. <T> lets your code stay flexible โ but still smart. Letโs master Generics ๐ medium.com/@devFemzy/day-โฆ #TypeScript #30DaysOfTypeScript
๐ง Day 8/30: Function typing & overloads. functions โ how to type them precisely โ and overloads, which let one function offer multiple call โshapesโ while keeping a single implementation. ย ย Full guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #NextJS #30DaysOfTypeScript
๐ง Day 7 โ Literal Types & Enums (and why as const often wins) 30 Days of Mastering TypeScript โ by devFemzy Today we dial in the precision by learning literal types, const assertions (as const), and when to use enums vs const objects. Full guide ๐ medium.com/@devFemzy/day-โฆโฆ
๐ง Day 6/30 โ Unions, Intersections & Discriminated Unions (with Exhaustive Checks) Full Guide ๐ท medium.com/@devFemzy/day-โฆ If youโre following along, tweet your setup screenshot or your progress with #30DaysOfTypeScript and tag me
๐ง Day 5/30: Arrays & Tuples Today we master sequences: flexible arrays and position-aware tuplesโplus how readonly protects both. Full Guide ๐ medium.com/@devFemzy/30-dโฆ If youโre following along, tweet your setup screenshot or your progress with #30DaysOfTypeScript and tag me
๐งฉ Day 3 of #30DaysOfTypeScript: Generics! ๐ - Reusable type definitions ๐ - Enhanced type safety ๐ก๏ธ - Flexible code structures ๐ Code sample below! ๐ป #30daysofcode #TypeScript #buildinginpublic
๐ต๏ธโโ๏ธ Day 4 of #30DaysOfTypeScript: Type Guards & Assertions ๐ก๏ธ - Narrowing types like a pro ๐ฏ - Asserting with confidence ๐ช - Code safer, debug faster ๐ Quiz: Can you spot the type guard? ๐ค Drop your answers below๐ #30daysofcode #typescript #buildinpublic #SoftwareDevelopment
๐๏ธ Day 2 of #30DaysOfTypeScript: Leveling up with Interfaces & Classes! ๐ - Custom types ๐ ๏ธ - Inheritance ๐จโ๐งโ๐ฆ - Polymorphism ๐ฆโก๏ธ๐ฆโก๏ธ๐ฆ Building stronger, more flexible code! ๐ช #30daysofcode #TypeScript #buildinginpublic
๐ Days 5 & 6 of #30DaysOfTypeScript: Double Feature! ๐ญ ๐ฆ Modules & Namespaces: Organizing our TypeScript kingdom ๐ Decorators: Sprinkling magic on our code Two-day coding extravaganza in the image below. Can you spot the decorator? ๐ #30DaysOfCode #typescript #buildinpublic
๐ง Day 5/30: Arrays & Tuples Today we master sequences: flexible arrays and position-aware tuplesโplus how readonly protects both. Full Guide ๐ medium.com/@devFemzy/30-dโฆ If youโre following along, tweet your setup screenshot or your progress with #30DaysOfTypeScript and tag me
๐ง Day 4: Object Shapes in TypeScript Objects, readonly, Optional Props & Index Signatures. Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #JavaScript #30DaysOfTypeScript
๐ Day 27 โ Publishing Typed Libraries in TypeScript 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ When you publish properly typed libraries, developers love you. #TypeScript #30DaysOfTypeScript
๐ฆ Day 26 โ Advanced TypeScript Config & Path Aliases 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ Many developers write TypeScript for years without ever touching tsconfig.json beyond the default.... #TypeScript #PathAliases #30DaysOfTypeScript
๐งฉ Day 22 โ Runtime Validation with Zod 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ TypeScriptโs compiler wonโt save you at runtime โ but tools like Zod (or io-ts) bridge the gap beautifully. #TypeScript #Zod #30DaysOfTypeScript
๐ Day 20 โ Async & Promises 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ asynchronous programming โ promises, async/await, and typing your asynchronous functions safely with TypeScript... #30DaysOfTypeScript #TypeScript
๐ง Day 19 โ DOM & Node Types 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ TypeScript doesnโt just help you write safer code, it helps you write safer environment-specific code. #30DaysOfTypeScript #TypeScript
๐ง Day 15 โ Conditional Types in TypeScript 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ Conditional Types let your types branch โ that is, choose between two possible outcomes based on a condition. #TypeScript #30DaysOfTypeScript
๐ง Day 14 โ Utility Types II (Mapped Types) 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ A Mapped Type lets you create a new type by taking the keys of another type and transforming them in some way. #TypeScript #30DaysOfTypeScript
๐ง Day 14 โ Utility Types II (Mapped Types) 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ A Mapped Type lets you create a new type by taking the keys of another type and transforming them in some way. #TypeScript #30DaysOfTypeScript
๐ง Day 13 โ Utility Types I (Built-ins) 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ Covered 20+ TypeScript utility types โ from Partial & Pick to Awaited & ReturnType. These tiny built-ins reshape, filter, and reflect types so you write less code withโฆ
๐ง Day 12/30: Generic interfaces/classes How generics power interfaces and classes, and how default type parameters make our APIs safer and more convenient. Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #30DaysOfTypeScript
๐ง Day 11/30 โ Generics Basics Write reusable functions without losing type safety. <T> lets your code stay flexible โ but still smart. Letโs master Generics ๐ medium.com/@devFemzy/day-โฆ #TypeScript #30DaysOfTypeScript
๐ง Day 11/30 โ Generics Basics Write reusable functions without losing type safety. <T> lets your code stay flexible โ but still smart. Letโs master Generics ๐ medium.com/@devFemzy/day-โฆ #TypeScript #30DaysOfTypeScript
๐ง Day 10/30: type vs interface Prefer type for unions & utilities; interface for OO/merge cases. Both describe shapesโโโchoose the one that fits your intent. Full Guide ๐ medium.com/@devFemzy/day-โฆ ย #TypeScript #30DaysOfTypeScript
๐ง Day 10/30: type vs interface Prefer type for unions & utilities; interface for OO/merge cases. Both describe shapesโโโchoose the one that fits your intent. Full Guide ๐ medium.com/@devFemzy/day-โฆ ย #TypeScript #30DaysOfTypeScript
๐ง Day 9 โ Type Narrowing & Control-Flow Analysis Type Narrowing & Control-Flow Analysis are how TypeScript turns โmaybeโ types into the exact thing you can safely use.... Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypescriptIn30Days #30DaysOfTypeScript
๐ง Day 9 โ Type Narrowing & Control-Flow Analysis Type Narrowing & Control-Flow Analysis are how TypeScript turns โmaybeโ types into the exact thing you can safely use.... Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypescriptIn30Days #30DaysOfTypeScript
๐ง Day 8/30: Function typing & overloads. functions โ how to type them precisely โ and overloads, which let one function offer multiple call โshapesโ while keeping a single implementation. ย ย Full guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #NextJS #30DaysOfTypeScript
๐ง Day 7 โ Literal Types & Enums (and why as const often wins) 30 Days of Mastering TypeScript โ by devFemzy Today we dial in the precision by learning literal types, const assertions (as const), and when to use enums vs const objects. Full guide ๐ medium.com/@devFemzy/day-โฆโฆ
๐ง Day 6/30 โ Unions, Intersections & Discriminated Unions (with Exhaustive Checks) Full Guide ๐ท medium.com/@devFemzy/day-โฆ If youโre following along, tweet your setup screenshot or your progress with #30DaysOfTypeScript and tag me
๐ง Day 5/30: Arrays & Tuples Today we master sequences: flexible arrays and position-aware tuplesโplus how readonly protects both. Full Guide ๐ medium.com/@devFemzy/30-dโฆ If youโre following along, tweet your setup screenshot or your progress with #30DaysOfTypeScript and tag me
๐ง Day 5/30: Arrays & Tuples Today we master sequences: flexible arrays and position-aware tuplesโplus how readonly protects both. Full Guide ๐ medium.com/@devFemzy/30-dโฆ If youโre following along, tweet your setup screenshot or your progress with #30DaysOfTypeScript and tag me
๐ง Day 4: Object Shapes in TypeScript Objects, readonly, Optional Props & Index Signatures. Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #JavaScript #30DaysOfTypeScript
๐ง Day 4: Object Shapes in TypeScript Objects, readonly, Optional Props & Index Signatures. Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #JavaScript #30DaysOfTypeScript
๐ง Day 3: Type Inference โ Let TypeScript Think for You Let TypeScript infer locals; only annotate boundaries (params/returns). Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #Nextjs #30DaysOfTypeScript
๐ง Day 3: Type Inference โ Let TypeScript Think for You Let TypeScript infer locals; only annotate boundaries (params/returns). Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #Nextjs #30DaysOfTypeScript
๐งฉ Day 2 โ Primitives & Type Annotations TypeScript gives your variables a voice. No more guessing whatโs string or number. โ string | number | boolean | null | undefined | bigint | symbol โ Always type params & returns โ No implicit any Full guide ๐ medium.com/@devFemzy/day-โฆโฆ
๐ Days 5 & 6 of #30DaysOfTypeScript: Double Feature! ๐ญ ๐ฆ Modules & Namespaces: Organizing our TypeScript kingdom ๐ Decorators: Sprinkling magic on our code Two-day coding extravaganza in the image below. Can you spot the decorator? ๐ #30DaysOfCode #typescript #buildinpublic
๐ต๏ธโโ๏ธ Day 4 of #30DaysOfTypeScript: Type Guards & Assertions ๐ก๏ธ - Narrowing types like a pro ๐ฏ - Asserting with confidence ๐ช - Code safer, debug faster ๐ Quiz: Can you spot the type guard? ๐ค Drop your answers below๐ #30daysofcode #typescript #buildinpublic #SoftwareDevelopment
๐งฉ Day 3 of #30DaysOfTypeScript: Generics! ๐ - Reusable type definitions ๐ - Enhanced type safety ๐ก๏ธ - Flexible code structures ๐ Code sample below! ๐ป #30daysofcode #TypeScript #buildinginpublic
๐๏ธ Day 2 of #30DaysOfTypeScript: Leveling up with Interfaces & Classes! ๐ - Custom types ๐ ๏ธ - Inheritance ๐จโ๐งโ๐ฆ - Polymorphism ๐ฆโก๏ธ๐ฆโก๏ธ๐ฆ Building stronger, more flexible code! ๐ช #30daysofcode #TypeScript #buildinginpublic
๐ Day 27 โ Publishing Typed Libraries in TypeScript 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ When you publish properly typed libraries, developers love you. #TypeScript #30DaysOfTypeScript
๐ง Day 15 โ Conditional Types in TypeScript 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ Conditional Types let your types branch โ that is, choose between two possible outcomes based on a condition. #TypeScript #30DaysOfTypeScript
๐ง Day 14 โ Utility Types II (Mapped Types) 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ A Mapped Type lets you create a new type by taking the keys of another type and transforming them in some way. #TypeScript #30DaysOfTypeScript
๐ง Day 14 โ Utility Types II (Mapped Types) 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ A Mapped Type lets you create a new type by taking the keys of another type and transforming them in some way. #TypeScript #30DaysOfTypeScript
๐ง Day 13 โ Utility Types I (Built-ins) 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ Covered 20+ TypeScript utility types โ from Partial & Pick to Awaited & ReturnType. These tiny built-ins reshape, filter, and reflect types so you write less code withโฆ
๐ง Day 9 โ Type Narrowing & Control-Flow Analysis Type Narrowing & Control-Flow Analysis are how TypeScript turns โmaybeโ types into the exact thing you can safely use.... Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypescriptIn30Days #30DaysOfTypeScript
๐ง Day 19 โ DOM & Node Types 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ TypeScript doesnโt just help you write safer code, it helps you write safer environment-specific code. #30DaysOfTypeScript #TypeScript
๐ง Day 10/30: type vs interface Prefer type for unions & utilities; interface for OO/merge cases. Both describe shapesโโโchoose the one that fits your intent. Full Guide ๐ medium.com/@devFemzy/day-โฆ ย #TypeScript #30DaysOfTypeScript
๐ง Day 9 โ Type Narrowing & Control-Flow Analysis Type Narrowing & Control-Flow Analysis are how TypeScript turns โmaybeโ types into the exact thing you can safely use.... Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypescriptIn30Days #30DaysOfTypeScript
๐งฉ Day 3 of #30DaysOfTypeScript: Generics! ๐ - Reusable type definitions ๐ - Enhanced type safety ๐ก๏ธ - Flexible code structures ๐ Code sample below! ๐ป #30daysofcode #TypeScript #buildinginpublic
๐งฉ Day 22 โ Runtime Validation with Zod 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ TypeScriptโs compiler wonโt save you at runtime โ but tools like Zod (or io-ts) bridge the gap beautifully. #TypeScript #Zod #30DaysOfTypeScript
๐ง Day 5/30: Arrays & Tuples Today we master sequences: flexible arrays and position-aware tuplesโplus how readonly protects both. Full Guide ๐ medium.com/@devFemzy/30-dโฆ If youโre following along, tweet your setup screenshot or your progress with #30DaysOfTypeScript and tag me
๐ง Day 4: Object Shapes in TypeScript Objects, readonly, Optional Props & Index Signatures. Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #JavaScript #30DaysOfTypeScript
๐ฆ Day 26 โ Advanced TypeScript Config & Path Aliases 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ Many developers write TypeScript for years without ever touching tsconfig.json beyond the default.... #TypeScript #PathAliases #30DaysOfTypeScript
๐ง Day 8/30: Function typing & overloads. functions โ how to type them precisely โ and overloads, which let one function offer multiple call โshapesโ while keeping a single implementation. ย ย Full guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #NextJS #30DaysOfTypeScript
๐ง Day 7 โ Literal Types & Enums (and why as const often wins) 30 Days of Mastering TypeScript โ by devFemzy Today we dial in the precision by learning literal types, const assertions (as const), and when to use enums vs const objects. Full guide ๐ medium.com/@devFemzy/day-โฆโฆ
๐ง Day 11/30 โ Generics Basics Write reusable functions without losing type safety. <T> lets your code stay flexible โ but still smart. Letโs master Generics ๐ medium.com/@devFemzy/day-โฆ #TypeScript #30DaysOfTypeScript
๐ง Day 10/30: type vs interface Prefer type for unions & utilities; interface for OO/merge cases. Both describe shapesโโโchoose the one that fits your intent. Full Guide ๐ medium.com/@devFemzy/day-โฆ ย #TypeScript #30DaysOfTypeScript
๐๏ธ Day 2 of #30DaysOfTypeScript: Leveling up with Interfaces & Classes! ๐ - Custom types ๐ ๏ธ - Inheritance ๐จโ๐งโ๐ฆ - Polymorphism ๐ฆโก๏ธ๐ฆโก๏ธ๐ฆ Building stronger, more flexible code! ๐ช #30daysofcode #TypeScript #buildinginpublic
๐ง Day 12/30: Generic interfaces/classes How generics power interfaces and classes, and how default type parameters make our APIs safer and more convenient. Full Guide ๐ medium.com/@devFemzy/day-โฆ #TypeScript #30DaysOfTypeScript
๐ง Day 11/30 โ Generics Basics Write reusable functions without losing type safety. <T> lets your code stay flexible โ but still smart. Letโs master Generics ๐ medium.com/@devFemzy/day-โฆ #TypeScript #30DaysOfTypeScript
๐ง Day 6/30 โ Unions, Intersections & Discriminated Unions (with Exhaustive Checks) Full Guide ๐ท medium.com/@devFemzy/day-โฆ If youโre following along, tweet your setup screenshot or your progress with #30DaysOfTypeScript and tag me
๐ง Day 5/30: Arrays & Tuples Today we master sequences: flexible arrays and position-aware tuplesโplus how readonly protects both. Full Guide ๐ medium.com/@devFemzy/30-dโฆ If youโre following along, tweet your setup screenshot or your progress with #30DaysOfTypeScript and tag me
๐ต๏ธโโ๏ธ Day 4 of #30DaysOfTypeScript: Type Guards & Assertions ๐ก๏ธ - Narrowing types like a pro ๐ฏ - Asserting with confidence ๐ช - Code safer, debug faster ๐ Quiz: Can you spot the type guard? ๐ค Drop your answers below๐ #30daysofcode #typescript #buildinpublic #SoftwareDevelopment
๐ Day 20 โ Async & Promises 30 Days of Mastering TypeScript by devFemzy medium.com/@devFemzy/day-โฆ asynchronous programming โ promises, async/await, and typing your asynchronous functions safely with TypeScript... #30DaysOfTypeScript #TypeScript
๐ Days 5 & 6 of #30DaysOfTypeScript: Double Feature! ๐ญ ๐ฆ Modules & Namespaces: Organizing our TypeScript kingdom ๐ Decorators: Sprinkling magic on our code Two-day coding extravaganza in the image below. Can you spot the decorator? ๐ #30DaysOfCode #typescript #buildinpublic
Something went wrong.
Something went wrong.
United States Trends
- 1. #AEWDynamite 10.4K posts
- 2. Donovan Mitchell 3,196 posts
- 3. #Survivor49 1,900 posts
- 4. UConn 5,598 posts
- 5. #CMAawards 2,238 posts
- 6. Arizona 30.2K posts
- 7. #SistasOnBET N/A
- 8. Jaden Bradley N/A
- 9. #cma2025 N/A
- 10. Shelton 2,289 posts
- 11. Jarrett Allen 1,367 posts
- 12. Nick Allen N/A
- 13. Savannah 4,243 posts
- 14. FEMA 34.7K posts
- 15. Koa Peat N/A
- 16. Sengun 3,689 posts
- 17. Sheila Cherfilus-McCormick 28K posts
- 18. Dubon 1,281 posts
- 19. Zach Top N/A
- 20. Jay Huff N/A