We are using callbacks in javascript from its beginning days. We thought it great. We can pass a method as an argument to another. Wow! Is not it amazing? Yes, it is unless we use a lot of it. Let’s say we have two callbacks i.e. A and B. This B callback ... more
Angular 4 is here for some time. It is a good time to enhance your skills on angular 4. I find myself more powerful while using angular 4. You should know that there are not many differences with angular 2 and angular 4. So anything I will discuss here ... more
Did you ever encounter .gitkeep in any git project? You might. If you install recent angular 2 or angular 4 projects via angular CLI, you will see one .gitkeep file in the ./src/app/assets folder. So you might wonder what is this file? We all know about ... more
Here, I will discuss how you can build a simple JavaScript Line Chart Library. Here we will try to make a line chart using HTML5 canvas. As it will be library so the code have to be easy for the other developers to use. The final product would look like ... more
Do you know about console.table()? Here we will learn to add styles to our javascript console output. We will also learn about advanced console tricks to debug better. I will ask you to use chrome for this. Let’s jump into this right now. Console Tricks ... more
We all are using ajax for a pretty long time but not with Fetch API. When AJAX came to the modern web, it changed the definition of how web works. To load a new content in a web page, we do not need a full page reload. Using AJAX, we can post or pull ... more
If you are a developer, you might already know what an HTTP POST request is. You are pretty comfortable in making one. The probability that your present project is somehow related to one or more HTTP post requests, is pretty damn high. Most of the modern ... more
When I first started learning Nodejs, It took few days to properly understand how routes work in an ExpressJs backend. In the previous article, I discussed how to get started with Nodejs ExpressJs Application. Here, We will learn how to use NodeJs ExpressJs ... more
This tutorial is written specifically for people who are planning to learn Nodejs. You may have programmed in PHP before, and willing to start your career in nodejs, then It will surely help you. I will try my best to explain you each thing in detail. ... more