Svelte and Svelte-kit — RenderingRendering a WebApp plays an important role when it comes to its performance. The Svelte apps can be rendered in three different ways:Apr 18, 2022Apr 18, 2022
Svelte and Svelte-kit — reasons to move to SvelteSvelte is the latest approach to front-end web development. It is a JavaScript framework that compiles the code into tiny vanilla…Mar 12, 2022Mar 12, 2022
How to move from class component to function componentIn the last post, I have talked about the differences between a class component and a functional component. This post is about how a…Feb 7, 2022Feb 7, 2022
React class components and functional componentsReact class components are extended from the ‘Component’ class that is provided by ‘react’. These are complete classes that contain…Dec 31, 2021Dec 31, 2021
Basic JavaScript conceptsJavaScript is the programming language of the web. It is very popular and also quite easy to learn. Here are the concepts that I found to…Nov 26, 2021Nov 26, 2021
React hooks — The Why, How and WhenIn the previous post, I went over the basics of React hooks. This post is about when to use Hooks and how to create custom hooks.Nov 21, 2021Nov 21, 2021
React HooksReact is a design oriented library, used to make interactive WebApps, where the DOM elements reloaded only when there were changes. This is…Oct 9, 2021Oct 9, 2021
Apply, Call and BindThe 3 most commonly used built-in methods for JavaScript functions — apply, bind and call. These are used when invoking a function. The…Oct 2, 2021Oct 2, 2021
Function expressions in JavaScriptWhile I was writing the post on JavaScript functions, I realised that the “function expressions” needed a post of its own! So here I am…Sep 26, 2021Sep 26, 2021
JavaScript FunctionsJavaScript is mostly a functional language. It uses functions to implement most of the programming scenarios like asynchronous tasks…Sep 18, 2021Sep 18, 2021