Remove the leading zero from a number in JavaScript
In this short article, we’ll explain how to remove the leading zero from a number in JavaScript. Sometimes we need to delete leading zero from string numbers. JavaScript has built-in...
In this short article, we’ll explain how to remove the leading zero from a number in JavaScript. Sometimes we need to delete leading zero from string numbers. JavaScript has built-in...
Today we’ll show you how to get the first N number of elements from an array in JavaScript. There are multiple ways to get N number of items from an...
Today we’ll show you how to add sass or scss in React application. If you are using the create-react-app package in your react project then it is very easy to...
Today we’ll explain to you how to drag and drop multiple file upload using jQuery, Ajax, and PHP. It is a common functionality widely used in web applications. You may...
In this short article, we’ll explain to you how to get yesterday’s, today’s, and tomorrow’s date using Javascript. Using the Date object, we can easily calculate the date in JavaScript....
In this article, we will show you how to use the multiple useReducer Hook in React. In the previous two articles, we learned about the use of the useReducer. useReducer...
Today we will show you how to use the useReducer hook for multiple states in the React component. In the previous article, we have taken a simple counter example using...
Today we’ll explain to you how to create a dynamic dependent select box using jQuery, Ajax, and PHP. Typically, this functionality is used to automatically add dependent data to a...
In this short article, we’ll discuss how to find URLs in a string and make clickable links in PHP. Sometimes you have data without any hyperlinks tags and when displayed...
Today we will show you how to use useReducer in React Hook. useReducer is a hook that is used for state management in React. The useState is built using the...
Today we’ll show you how to delete all commit history in GitHub. It’s a very small but useful article to delete all commit history of the branch and create a...
Today we’ll explain to you how to convert PHP array to JavaScript array. Sometimes, we need to pass a PHP array in JavaScript that can be a single or multidimensional...
This is the second article where we will confirm a stripe paymentIntent using Node.js. We have integrated the stripe payment gateway in React and created the demo of the checkout...
Today we’ll explain to you how to integrate stripe payment gateway in React. We will split this integration in the two parts such as React (Frontend) and Node.js (Backend). In...