JavaScript Fetch API to make HTTP reques … On January 17, 2021July 16, 2023 by Amitav Mishra The Fetch API is a better way to make HTTP requests in front-end applications. It is quite similar
Understanding async and await in JavaScr … On December 25, 2020March 19, 2022 by Amitav Mishra The async and await keywords help us in handling Promises in a more convenient way and it is more
A brief guide to Promises in JavaScript On December 10, 2020July 10, 2022 by Amitav Mishra A Promise in JavaScript is an object which returns a result after an asynchronous operation has
Callback functions in JavaScript On December 2, 2020July 10, 2022 by Amitav Mishra A callback is a function that is passed into another function as an argument which can be invoked
JavaScript Array forEach() method to loo … On November 23, 2020September 22, 2022 by Amitav Mishra The JavaScript array forEach() method iterates over the array elements and executes a function for
20+ JavaScript tips and tricks that you … On November 1, 2020July 10, 2022 by Amitav Mishra Let’s discuss some of the shorthand techniques and other tips & tricks of JavaScript one
A guide to Array.reduce() Method in Java … On October 15, 2020September 22, 2022 by Amitav Mishra The reduce() method reduces the array to a single value. This method takes one reducer function as
How to find elements in Array in JavaScr … On September 23, 2020November 10, 2022 by Amitav Mishra We can use 6 ways to find in array. The useful methods are find, findIndex, includes, indexOf,