I'm Yogesh Kanwade, a final year Computer Engineering student with a deep passion for software development. I am a continuous learner, with hardworking and goal-driven mindset and strong leadership capabilities. I am actively exploring the vast possibilities of Web Development along with AWS and DevOps, fascinated by their impact on scalable and efficient web solutions.
I am available for discussing and collaborating on interesting projects.
Let’s build our useState hook! So to mimic the useState hook from React.js, the first thing that comes to mind is to define a function that takes in the initial value and returns the initial value along with a function to update that value. During th...

Enhancements to createElement Right now we can pass in only one child to our createElement. Let’s ramp it up to handle multiple children. Our createElement also doesn’t handle props other than events, let’s add a setAttribute method so we can add som...

The Basics A simple Button placed in our container app . We increment score on button click and re-render our page entirely using our render() function. let score = 0; function render() { const parentDiv = document.getElementById("app"); parentD...
