tonymike99.hashnode.devTricky setTimeout() interview questions explainedIntroduction setTimeout() questions are very common in JS interviews. Depending on how you answer them, your level of expertise is determined. In this blog, I will explain a few interview questions which have been asked repeatedly in JS interviews. ...Jul 1, 2022·4 min read
tonymike99.hashnode.devHow to use the debugger inside VSCode (For beginners)Pre-requisite VSCode and Nodejs should be installed. Introduction In this blog, you will learn how to effectively use the debugger in detail inside VSCode itself and understand how the code flows with a simple example. What is debugging? In simple w...Jun 3, 2022·3 min read
tonymike99.hashnode.devHow to load images in React?Images can be loaded through two types of links/URLs: External links (i.e. a URL pointing to a resource on the web) Internal or local links (i.e. a URL pointing to a resource within your website/domain) 1. External links External links can be used...May 29, 2022·2 min read
tonymike99.hashnode.devAll you need to know about Mocking Strategies and Mock APIsIntroduction Mocking and stubbing are terms/techniques closely related to testing. Let us look in detail at these two terms. Mocking Strategies There are mainly two mocking strategies: 1. Client-side mocking (or simply mocking) Generally, mocking ...May 11, 2022·3 min read
tonymike99.hashnode.devIntroduction to APIs and Web APIs for beginnersBasics Before we start with 'What is an API?', it is important for us to understand certain jargons. If you are familiar with client and server concepts, feel free to skip this section. A client is a program capable of communicating with a server/s,...May 10, 2022·3 min read