The Ultimate Guide to Callback Functions in JavaScript
Callbacks are functions in JavaScript that are passed as arguments to another function and are triggered or executed inside that other function.
Trust The Process
Callbacks are functions in JavaScript that are passed as arguments to another function and are triggered or executed inside that other function.
Have you been using TypeScript for a while but you are not sure how the compilation works? In this article, we are going to go in deep about this works, what does it mean to compile a code as well as understanding why TypeScript needs to be compiled. How humans communicate with computers? As programmers, … Read more
Many developers have been using Node.js for years without knowing if it single-threaded or multi-threaded. We will explain which one is and why.
For those who have worked with JavaScript for a while, you will understand there are certain behaviors about the language that makes it seem it works in a certain way, when in reality it doesn’t, such as using == and === equals to check for equality between two different values. Against what many think, JavaScript … Read more
Whether you are coming from a different programming language like C# or you are a brand new programmer learning about JavaScript, you have probably seen different JavaScript codebases using in some cases double equals (==) and in other cases using triple equals (===). Although they seem similar at first, it is important to understand the … Read more
No matter what programming language you use, writing unit tests can be challenging. This is especially true for those who are not used to writing unit tests in their code. One of the most common problems developers face is whether they should or should not write unit tests to private methods. Hopefully, I can help … Read more
Software Development has evolved dramatically over the last 10+ years. Prior to the development of Frontend JavaScript frameworks, multiple projects relied on the backend, including its security. With more advances on the client-side, the level of responsibility has increased equally on both ends. However, is the JavaScript Client-Side Secure? In short, JavaScript client-side applications are … Read more
With more than 5 years of experience in the software development industry as a programmer, it is interesting to see my programming skills have skyrocketed since the moment I decided to become a programmer. If you are thinking about becoming a programmer and you would like to know if you can become a programmer, this … Read more
First and most importantly, I want to congratulate you. Wait, What? Yes, you heard it right. Congratulations! Writing proper documentation helps you get one step closer to writing clean code. If you don’t believe me, you might want to read the book Clean Coder from “Uncle” Bob. Trust me, it is an excellent investment in … Read more
When it comes to learning a new programming language, JavaScript is one of those languages programmers highly recommend. However, it can become overwhelming to learn JavaScript whenever there are different terms for JavaScript and different frameworks. However, some people suggest learning Vanilla JavaScript, so hopefully this read will help you understand this term. What is … Read more