blog.suyashpradhan.comThe JavaScript String Methods Explained with Examples.In general, a string represents a sequence of characters in a programming language. Some of the basic operations which we can perform on a string are calculating its length, we can combine/concatenate multiple strings, get the index value of a partic...Dec 4, 2025·3 min read
blog.suyashpradhan.comHow The Spread and Rest Operators works in JavaScript.The ... (dot, dot, dot) operator came around since the introduction of ES6 and has helped a lot in manipulating arrays and other iterables easily. The ... operator can either be called Spread or Rest depending on where or how it is being used. Let's ...Jul 4, 2021·3 min read
blog.suyashpradhan.comA comprehensive guide for React Router v6.Hello Everyone, in this blog I'll explain what is routing, and how to get started with React Router v6. What is Routing? In React, routers help to create and navigate between the different URLs that make up your web application. They allow your user ...Jun 15, 2021·5 min read
blog.suyashpradhan.comBuild Your Own Custom React Hook.In almost every front-end application we make API calls. Two most popular ways of making HTTP requests are either by using Fetch API or Axios library. In this article, I’ll explain how to write a custom hook for Axios in React. By following this meth...May 6, 2021·3 min read