PinnedWhat is Value Proposition?Introduction Over the past 4+ years, I've been working closely with Start-ups as an engineering manager and often would wear the hat of a product manager. One thing that was a common theme across every Start-up is the emphasis on the value they add t...Sep 10, 2020·9 min read·4.5K
The React EcosystemIntroduction When I started learning React, there was a huge debate on whether React is a library or a framework. While I assumed React to be a framework, since, it was always compared with the likes of Vue or Angular, it is actually a JavaScript lib...Oct 30, 2020·8 min read·1.8K
Why you should choose to learn 'React'?Introduction I have been working with the React library for a while now and the more I understand it, the more I'm in awe of the library. In this article, I wanted to share my thoughts on why I think React is one of the most popular JavaScript frame...Oct 27, 2020·6 min read·2.0K
Async/Await in JavaScript ExplainedIntroduction I have previously written articles on Callback & Promises which I recommend you read first to understand the absolute fundamentals of asynchronous processing What is Callback in JavaScript? Promises in JavaScript explained With the in...Oct 24, 2020·9 min read·2.1K
All you need to about JavaScript ObjectsIntroduction Almost everything in JavaScript is an Object. In this article, I'll share my understanding of what an object is, how an object can be created, modified, and how its properties can be accessed. What is an Object? An object is a collection...Oct 23, 2020·6 min read·496
JavaScript Callbacks ExplainedIntroduction I think Async is one of the most powerful yet not-so-direct concepts to grasp at first for JavaScript Newbies. In this article, I have covered the following topics: What does asynchronous execution mean? What are higher-order functions ...Oct 22, 2020·10 min read·1.4K
What are JavaScript Promises?Introduction While JavaScript Async/Await have gained immense popularity over the recent years. It is important to understand Promises first, since, they lay the foundation over which Async/Await works. In this article, we will look at the following...Oct 17, 2020·9 min read·1.4K