My Learnings

Explore my blog posts documenting the insights and solutions I've gained from overcoming challenges over the past three years. Dive into a range of topics and lessons that showcase my continuous growth and expertise.

Break and Continue

In JavaScript, the break and continue statements are used to control the flow of loops. They allow you to alter the execution of a loop...
Continue reading

Local storage

Local storage, also knows as web storage, is a feature provided by modern web browsers that allows web applications to store data locally on the...
Continue reading

Session Storage

Session Storage is a web storage mechanism that allows web application to store key-value pairs in user’s browser session. It provides a way to store...
Continue reading

HTTP cookies

Cookies are small text files that stored on a user’s computer or device when they visit a website. They are created by a website’s server...
Continue reading

Labeled statement

A labeled statement in JavaScript is a statement that is prefixed with a label name. This label name can then be used with the break...
Continue reading

While statement

The while statement is a loop construct in JavaScript that repeatedly executes a block of code as long as a specified condition evaluates to true....
Continue reading

do…while statement

The do...while statement is a loop construct in javaScript that executes a block of code at least once, and then continues to executes the block...
Continue reading

JavaScript For Loop

JavaScript for loop is a fundamental construct that allows developers to iterate over a collection of elements. While simple for loops are widely understood, mastering...
Continue reading

Loops and iteration

Loops offer a quick and easy way to do something repeatedly. Loop and iterations are used to execute a block of code repeatedly or iterate...
Continue reading

Keyed collections

JavaScript keyed collections are structured collections of data that store values and provide methods for easily accessing them. Keyed collections were actually introduced with ES6...
Continue reading

Data Structures in JavaScript

Data structures are the fundamental building blocks of computer science and programming. They enabled efficient storage, organization, and manipulation of data. This blog post aims...
Continue reading

JavaScript Built-in Objects

JavaScript, as a versatile programming language, provides a range of built-in objects that offer powerful functionality for various tasks. In this blog post, we will...
Continue reading