JS Array Functions

Commonly used array functions in JavaScript.

error

CSS Specificity

Specifictity in CSS.

error

Git

An overview of git and commonly used git commands.

error

Hoisting in JS with var

Understand hoisting in JavaScript using var.

error

Internal Working of JS Functions

A brief overview of how JavaScript functions run behind the scenes.

error

window & this keyword

Introduction to window and this keyword in JavaScript.

error

undefined vs not defined in JS

Understand the significane of undefined.

error

JS is a loosely typed language

Understand what a loosely typed language is.

error

Scope & Lexical Environment in JS

Deep dive into scope chain and lexical environment in JavaScript.

error

Hoisting in JS with let and const

An overview of how hoisting works with let and const.

error

Types of Errors in JS

Common types of errors in JavaScript with examples.

error

Block Scope & Shadowing in JS

Deep dive into blocks, block scope and an overview of shadowing in JavaScript.

error

Closures in JS

Deep dive into closures in JavaScript.

error

JS Interview Questions

Output based interview qustions in JavaScript.

error

Commonly used jargons in JS

Brief explanation of some of the commonly used jargons in JavaScript with examples.

error

Callback Functions in JS

Brief Explanation of callback functions in JS. Importance of removing event listners.

error

Event Loop in JS

In depth explanation of event loop in JavaScript, along with internal working of setTimeout, eventListener and fetch.

error

Optional Chaining in JS

Brief overview of optional chaining in JavaScript.

error

Nullish Coalescing in JS

Brief overview of the nullish coalescing operator (??) in JavaScript.

error

Factory & Constructor function in JS

Brief overview of factory function and constructor function in JavaScript.

error

Constructor property in JS

Deep dive into the constructor property in JavaScript.

error

Primitive vs Reference type in JS

Brief description of how primitives differ from reference types in JavaScript.

error

for-in & for-of loop in JS

Iterating through objects using for-in & iterables using for-of loop in JavaScript.

error

Object cloning in JS

Different ways of cloning an object in JavaScript.

error

Debounce & Throttle in JS

Debounce and throttle in JavaScript along with implementation.

error

Mimicking lifecycle methods with hooks

Using the useEffect hook to mimic componentDidMount, componenetDidUpdate, and componentWillUpdate.

error