Typescript enums: Replacing them with const and union types
Last year :astro-ref[I wrote a post about the typescript…
Last year :astro-ref[I wrote a post about the typescript…
We can agree decoupling is a good practice that simplifies the code and the maintainability of the…
When you introduce Typescript in a legacy project, or you are using a library that doesn't provide…
ENUM BASICS Enums is one of the nice things Typescript bring to the Javascript development's…
Recently I was looking for more knowledge about Typescript typing, how to create more advanced and…
One useful feature in Typescript is union types, for example string | number | null, it's a way to…
Typescript is a great "language", makes it possible to create more maintainable and understandable…
If you program in JavaScript probably somebody told you about the advantages of using Typescript or…