Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Husn Guitar Chords – Anuv Jain

husn chords

In this article,  we are going to learn Husn Guitar Chords. This song is composed and sung by Anuv Jain. Coming to the chords, we used a capo on the 5th fret to simplify the chords for beginner guitarists. The chord progression is as follows. Husn Guitar Chords With Capo Song Husn Artist Anuv Jain … Read more

Perfect Guitar Chords – Ed Sheeran

perfect chords

In this article, you are going to learn Perfect Guitar Chords. This song is composed and sung by Ed Sheeran. Coming to the chords, we have used capo on the 1st fret to make the chords easier for beginner guitarists. The chord progression is as follows. Perfect Guitar Chords With Capo Song Perfect Artist Ed … Read more

Easy Way to Convert a Decimal Number to a Binary Number using Javascript

decimal to binary

In this article, I will be sharing an easy way to convert a decimal number to a binary number using javascript. Decimal Number to Binary Number using Javascript function decimalToBinary(num) { let binary = [] while (num > 0) { binary.push(num % 2) num = Math.floor(num / 2) } console.log(binary.reverse().join(”)) } decimalToBinary(10) // Result: 1010 … Read more

How to create objects in JavaScript?

create object in javascript

  In this article, we are going to learn multiple ways to create objects in Javascript. Multiple Ways To Create Objects in Javascript 1. Object Constructor This is the simple way to create an object in Javascript. var object = new Object(); However, this approach is not recommended these days as we can an object … Read more

Aadhar Card Number Validation in Javascript

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 Unique Identification Authority of India (UIDAI) to the people of India. It serves as proof of identity and address and is used for various government and non-governmental operations. The Aadhaar card … Read more