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