Have you ever wondered how JavaScript executes code?javascript executes code by creating and managing Execution contexts There are two types of Execution Contexts Global Execution contexts Function Execution contexts Global Execution Contexts In JavaScript, a global execution context is created wh...Oct 15, 2024·3 min read·13
Deliver my first Open source talkHello, wonderful audience! I'm thrilled to share my journey of giving my first open-source talk. Let's dive into the presentation I've prepared for the talk. To start, I introduced the community, and its goals, and shared a bit about myself. Now, wit...Aug 29, 2023·5 min read·40
Building and Empowering: My Journey in Creating an Open Source Incentive Project for ContributorsThe project I'm about to delve into is a collaborative effort that wouldn't have been possible without the dedicated teamwork of fellow contributors. I'm excited to share about my project, which is a part of the TSoC (TimeChain Summer of Code). As yo...Aug 27, 2023·3 min read·74
The Unique Features of JavaScript ArraysStoring elements of different types: In JavaScript, arrays can contain different types of data types such as numbers, objects, strings, or boolean let arr = [1, "3", "hi", true, null] Array methods : unlike String, Array is mutable. we can modify th...May 12, 2023·2 min read·13
Open Source : How Contributing Can Take Your Skills to the Next Levelwe know that open source refers to software or technology that is made available to the public for free, and the source code is openly available for anyone to view, modify, and distribute. But open source is just not limited to the contribution to th...May 3, 2023·2 min read·55
Learning to Embrace Your own journey : A guide to avoiding comparison in techeveryone is on their own journey All of us have dreams, and we are all on a journey to achieve them. To reach our desired destination, we set goals and break them down into smaller, achievable targets. However, despite our best efforts, there may be ...May 1, 2023·4 min read·28
Flexbox In CSS: A beginner's guideWhen to use Flexbox? In simple words, If you want to layout items in one direction on your webpage then you can use Flexbox. Furthermore, I will explain to you in detail all the properties. Stay tuned for more information. Difference between Flexbox ...Apr 8, 2023·5 min read·60