© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Luca Del Puppo
Microsoft MVP, Google Developer Expert, GitKraken Ambassador, Senior Software Developer at NearForm and JavaScript enthusiastic.
There are some cases, where we need to detect the type of the object to get the correct implementation of our method. Let me show you a case type Square = { size: number; }; type Rectangle = { with: number; height: number; }; type Circle = { ...
No responses yet.