Technology

Deep dives, tutorials, and thoughts on building scalable modern web applications.

2 min read

Aadhar Card Number Validation in Javascript

This article will teach the Aadhar Card Number Validation in Javascript. The Aadhaar card number is a unique 12-digit identification number issued by the UIDAI.

JavascriptRegexValidation
3 min read

What is the Array Reduce Method in Javascript?

In this article, we are going to learn about the Array Reduce method in Javascript. If we want to get or return a value from an array in different scenarios, we can use the reduce method.

JavascriptWeb Dev
2 min read

How To Use Fetch Method In React?

In this article, you are going to learn how to use the fetch method in React. We will explain it with an example using React hooks for state management.

ReactJavascriptAPI
6 min read

Top HTML Interview Questions with Answers

Preparing for an HTML interview? In this comprehensive guide, we’ve compiled a curated list of HTML interview questions and answers to help you ace your interview.

HTMLInterviewWeb Dev
3 min read

Javascript Increment Counter on Button Click using React

In this article, I am going to share code for the Javascript Increment Counter on Button Click using React. I have been using the React environment to implement this function as most of the jobs are asking for a React skill set.

JavascriptReact
2 min read

Program For Prime Numbers in Javascript

This article will teach us how to find Prime Numbers in Javascript. Prime numbers are the numbers that have only two factors. They are 1 and itself.

JavascriptAlgorithms
5 min read

What is the difference between Javascript and Typescript?

In this article, we are going to know the difference between Javascript and Typescript. Javascript is a loosely typed scripting language. Typescript is solving this issue and it is giving us the edge over Javascript.

JavascriptTypescriptWeb Dev