Divaksh
/JavaScript

category: JavaScript

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 […]

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 […]

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 […]