The SOLID principles were defined quite some time ago and are still relatable. Their goal is to make our software easier to understand, read, and extend. We accredit this concept to Robert C. Martin from his paper from the year 2000. The actual SOLID acro... (more…)
Read more »
Unit testing is one of the greatest ways to write effective code. In this article, I want to introduce you to what is this type of testing exactly and some… (more…)
Read more »
Após algum tempo trabalhando com a linguagem TypeScript, se aventurando em códigos de outros programadores e mesmo utilizando alguns famosos frameworks, você pode ter se deparado com trechos de código semelhantes a este...
interface Collection<T> {.... (more…)
Read more »
To get the names and values of Enums in typescript,we can loop through the enum object using for loop. (more…)
Read more »