React 19: All You Need to Get Started Using itRegarding JS libraries and frameworks, React stands out due to the large community of developers that have adopted it as their preferred UI library and its large ecosystem of third-party packages that can make development easier and faster. As always...Oct 5, 2024·19 min read
How to Create a React Custom HookIntroduction React hooks can help you use state and other React features without using a class component, by using stateful logic and side effects in functional components. They ensure that code is reusable instead of writing the same stateful logic ...Jun 3, 2023·5 min read
Destructuring in JavaScriptIntroduction The advent of ECMAScript 6 (ES6) in 2015 made JavaScript more exciting and brought about various fascinating features, including destructuring. This new feature was created to aid in the handling of arrays and objects. This article will ...May 4, 2023·6 min read
*args and **kwargs in PythonIntroduction You might find yourself writing functions in Python that require many arguments, and this can be tiring at times. Let’s say that you want to write a function to add ten numbers. You would have to specify ten different parameters! That is...May 2, 2023·5 min read
Python DictionariesA beginner's guide to understanding the usage of Python dictionaries.Apr 10, 2023·5 min read
How to Create a Password Visibility ToggleA beginner's guide to creating visibility togglesApr 5, 2023·6 min read