Divaksh

Beginner’s Guide to Scope, Closures & Hoisting in JavaScript

Compiled on Jun 21 2021 in JavaScript

JavaScript has become one of the most widely used scripting language on the web. Before the epitome of JavaScript, webpages were not as interactive as they are today. JavaScript made web pages dynamic and enabled interactive features like animations and autoloading of the content. In this article, we will learn about the three chief concepts […]

Brief Understanding of this, bind, apply, & call in JavaScript

Compiled on May 02 2021 in JavaScript

Today in this article we will learn about the keyword ‘this’ and some different functions of JavaScript that enhance the utility of the keyword ‘this’. This remains a very confusing and debating topic for JavaScript developers. People also say that this is extremely hard to understand “this”, but today in this discussion, we will make […]

ABCD of JMeter

Compiled on Apr 05 2021 in Automation

At present time software companies are trying to deliver best quality product to their customers. For this they must maintain a benchmark of their product that can ensure its quality. Maintaining the quality is not an easy task without proper resources. JMeter is one of the most useful resources for this purpose. JMeter is a […]

Demystifying Truthy and Falsy in JavaScript

Compiled on Mar 04 2021 in JavaScript

JavaScript is the most widely used scripting language on the Internet, which makes it essential to understand the basics of the language. You may have heard about the truthy and falsy in JavaScript. To write good code, you need to understand what is truthy in JavaScript, what is falsy in JavaScript, and how to use […]

Maven from Beginner to Expert

Compiled on Feb 01 2021 in Java

Have you ever gone through the frustration of not able to compile your code even after aware of the fact that code is all right, but the error is due to the missing libraries or packages on your system? this is where Maven can help you or there may be a lot of situations where […]

The Ultimate Guide to GitHub CLI

Compiled on Jan 01 2021 in Git

CLI stands for the command line interface. Tools that do not have graphical user interface and run on command line interface are called CLI tools. Companies make CLI tool for easier and faster access to features and functionality to improve productivity. Today, most widely used products such as AWS, Azure, Shopify, IBM Cloud, etc have their […]

JSON Vs JavaScript Object Literal

Compiled on Dec 29 2020 in JavaScript

Often new programmers get confused between JSON and JavaScript Object Literals. As JSON and Object Literals have the almost same syntax, they look the same, but they are not. In this article, you will get to know everything about JSON vs JavaScript Object Literal. What is JSON? JSON i.e. JavaScript Object Notation is nothing but […]

Master Guide For HTML

Compiled on Nov 06 2020 in HTML

At present time ⏳ we all are surrounded by documents 📄 as they are extremely helpful in conveying the information. The power 💪 of every document is the way of its representation, its structure and in the world of the internet 🌐, documents exist as the form of web pages. These web pages are being […]

The Ultimate Git Cheat Sheet

Compiled on Oct 24 2020 in Git

Version Control is a system that keeps a record of the changes made to files along with the addition and removal of files over time so that you can recall or reverse back to specific versions later. Most widely used version control system in the present time is Git. Git is a faster, more powerful […]

HTTP status codes made easy

Compiled on Sep 20 2020 in HTTP

On the internet, whatever you do is a request and whatever you get in return is a response. Let’s take an example: You enter google.com in the browser and hit enter ⇾ it’s a requestGoogle.com gets opened ⇾ it’s a responseYou often see some common three digits of codes when anything goes wrong, a most […]