How does JavaScript manages memory?When we write any code in Js, memory gets allocated to our variables, functions that are been used. Depending upon the dataTypes, variables…Sep 21Sep 21
Simplifying Closures in JS!Closure is a javascript function that has access to its own scope, outer function’s scope and global scope even after the outer function…Sep 18Sep 18
Lets Start with JS: StringsJavaScript is a powerful programming language that can add interactivity to a website. JavaScript has 8 DatatypesMar 13Mar 13
Leetcode: 11 Container With Most Water (medium)Lets take a look at the 11th problem (Category: Array)Jan 13, 2022Jan 13, 2022
Processes and threadsWhenever we run a program on our computer, we start something called a process. The process simply means any program that is in execution…Sep 27, 2021Sep 27, 2021
JavaScript — When to use .map and .forEachJavaScript can be confusing sometimes, especially when you don’t know the correct use of some predefined methods. Using these methods in a…Sep 5, 2021Sep 5, 2021
Steps to create an initial setup for a new TypeScript projectIf you want to start creating a new React app or any JavaScript app using TypesScript, you can follow the below steps to create an initial…Jan 27, 2021Jan 27, 2021
Steps to follow while migrating React Project to TypeScriptSuppose you have an existing react project and you recently discovered all the advantages of using TypeScript, and so want to convert your…Nov 26, 2020Nov 26, 2020
Using SQLite with Python (Part 1)In this article, we are going to see how we can connect SQLite with python, create a table in our SQLite database, and also how we can…Nov 24, 2020Nov 24, 2020