Debouncing and Throttling in JavaScriptOh, so you heard these terms and now want to get familiar with them, so you write good code. Both are must these days as people are getting impatient and click on buttons more than once. And if you have an expensive function then you won't want to ca...Sep 6, 2022·3 min read
Why and How Github?Disclaimer: This is not to make you an expert about git & Github. It is to set you up for it. Prerequisite: Nothing but a few files to upload on Github. What is Git & Github? Git is a version control software to track changes to source code. It also ...Oct 2, 2021·4 min read
JavaScript Comparison Operators == and ===You are here then either you are curious or you are confused. You have been using it for a while but you don't know, what's the actual difference between them. The same was the case for me. I used any one of them while creating programs. It didn't ma...Oct 1, 2021·3 min read
Ultimate JavaScript basics before any libraryThe ultimate JavaScript basics you must know before shifting to a library/framework. Variables Objects Functions Arrays Conditions DOM Variables in JavaScript Variables are used to store data. There are three types of variables: const name = 'Priya...Sep 30, 2021·2 min read
Intro to Eloquent JavascriptI have read a few fiction novels but never came across any book related to programming language. This is the first time I'm reading something like this. I believe that you learn coding by doing projects not reading books or even watching videos. They...Dec 5, 2020·4 min read