In the previous part of this tutorial, I had given an exercise to develop your resume in HTML. If you are able to develop it, then you have done great [ … ]
How to Develop a Website – Part 1
In this tutorial, I will teach you how to develop a website from scratch step by step. I will start from basics and gradually move to advance level. In order [ … ]
What is Closure in JavaScript
In this article I will explain closure – one of the important concepts in JavaScript. I will also cover the benefits of using closures. What is a closure? JavaScript is [ … ]
What is Hoisting and Temporal Dead Zone in ES6
Hoisting is important JavaScript concept introduced in ECMAScript 6 (ES6) where variables and function declarations (declared using var) are moved to the top of their scope before code execution. Inevitably, [ … ]
What is DOM
The Document Object Model (DOM) is a tree representation of a document on the web. It consists of objects representing logical structure of a document and the content in it. The objects [ … ]
What is New in Bootstrap 5
The alpha version of the much-awaited Bootstrap 5 framework was released on 16th June 2020 after several refinements. In fact, it took approximately 2 years to get the alpha version [ … ]
What is Promise in JavaScript
A Promise is an object that represents the eventual completion (or failure) of an asynchronous operation, and its resulting value. Promise can either be fulfilled with a value, or rejected with a reason (error). A [ … ]
Handling Array of Objects in JavaScript
If you are working with APIs, most of the time you will encounter arrays of objects. In this article you will learn how array of objects should be handled for [ … ]
What is async/await in JavaScript
The async/await is a new feature included in ECMAScript 2017 or ES8 JavaScript edition in order to make asynchronous function calls easier and it act as syntactical sugar on top [ … ]
What is Callback in JavaScript
A callback is a plain JavaScript function passed to some other function as an argument or option. In JavaScript, functions are objects. Because of this, a function can take another function as a [ … ]
