Tim Mouskhelichvili • March 7, 2022 • 4 minutes to read
In JavaScript, the easiest way to check if a string starts with something is to use the startsWith() function. This article will tell you everything that you need to know about this function. By the end of this guide [...]
Tim Mouskhelichvili • March 7, 2022 • 2 minutes to read
There is a lot of use cases where you would want to pause your JavaScript's execution before running the next line. Sadly, a function like that is absent from JavaScript's default functionality. Luckily for us, JavaScript provides a few [...]
Tim Mouskhelichvili • March 5, 2022 • 7 minutes to read
Some time ago, when package managers didn't exist, it was very hard to manage all of your project's dependencies. This task was also growing in complexity when your project grew in size. Nowadays, luckily for us, we have package [...]
Tim Mouskhelichvili • March 5, 2022 • 2 minutes to read
TypeScript is a programming language developed in 2012 by Microsoft. Since its inception, it has exponentially grown in popularity. TypeScript offers a lot of advantages compared to JavaScript, most importantly typings which help prevent a lot of bugs, help [...]