Niraj Chauhan

Niraj Chauhan

#father#husband#SoftwareCraftsman#foodie#gamer#onepiece#naruto



Javascript Naming Conventions

Many times we face situations in projects for naming our files, variables or classes. Here is the convention I am sharing which I follow in my projects of Javascript. Read More »


[] == [] is false, why? | JavaScript

I love javascript and its mystery, if you had to compare a set of two identical arrays the first thing in your mind would come is to compare using == operator. But in javascript the result will be different. Read More »


Get your website visitors device battery status

Recently I added a functionality in one my clients website to notify user about battery status if they are running low on it. Read More »


Javascript Mixin

In simple words reusing object between different classes. You can also take it as an Interface with implemented methods. Read More »