Tim Mouskhelichvili • April 1, 2022 • 3 minutes to read
When you start a new coding project, there is a 99% chance that you will use git for version control. Probably two of the most popular git commands are git pull and git fetch. A lot of the time [...]
Tim Mouskhelichvili • March 28, 2022 • 4 minutes to read
In TypeScript, both an interface and a type alias can be used to describe a new named type. Since in most cases, almost all features are available in both, developers are sometimes using them interchangeably. This brings confusion and [...]