SSruthiinsruthicodes.hashnode.dev·Dec 20, 2022 · 4 min readBasics of "this" keyword in JavascriptHi there! This blog covers the basics that you need to know about the "this" keyword in Javascript. The "this" keyword in Javascript has different references at different places. We will see them one by one here Global context In the global context, ...01I
SSruthiinsruthicodes.hashnode.dev·Jun 24, 2022 · 3 min readRendering Methods: CSR vs SSR vs SSGHi there! This blog will give you a glimpse of the different rendering methods namely Client Side Rendering (CSR) Server Side Rendering (SSR) and Static Site Generation (SSG) These rendering methods are nothing but different ways to render the cont...02HA
SSruthiinsruthicodes.hashnode.dev·Jul 3, 2021 · 6 min readWebpack and Performance OptimizationHi there, This post will give you a glimpse of what happens during build time of an application and how the performance of a web application can be optimized. Let's dive deep into it! Have you noticed what happens when you the run the command npm ru...03BSS
SSruthiinsruthicodes.hashnode.dev·May 9, 2021 · 7 min readGetting started with TypeScriptThis article covers all that you need to get started with TypeScript. Before we jump into understanding what typescript is, I believe it is extremely important to understand the concept of typing. Static Typing In static typing, the programmer needs ...01U
SSruthiinsruthicodes.hashnode.dev·Mar 20, 2021 · 13 min readAll about Errors in JavascriptWhat is an Error? In Javascript, an error is an object which gets thrown when something goes unexpected in a program. The error object has three properties message - A message is a short description about the error name - Name tells us the type of t...01M