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 21, 2024Sep 21, 2024
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 18, 2024Sep 18, 2024
Lets Start with JS: StringsJavaScript is a powerful programming language that can add interactivity to a website. JavaScript has 8 DatatypesMar 13, 2024Mar 13, 2024
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
REST API testing with cypressWhen it comes to using Cypress, many testers think about using it only for front-end testing. But we can use Cypress when writing e2e API…Nov 19, 2020Nov 19, 2020
Type in TypescriptTypeScript is an open-source language which builds on JavaScript. Types provide a way to describe the shape of an object, provides better…Oct 19, 2020Oct 19, 2020
Hooks and functional component in React jsHooks are a new addition in React 16.8. They let you use state and other React features without writing a class.Sep 28, 2020Sep 28, 2020
Mocking in JestThe goal for mocking is to replace something we don’t control with something we do. The mock function provides feature toSep 25, 2020Sep 25, 2020