BABarnabas Ashainbarnabas.hashnode.dev路Mar 28, 2023 路 10 min readUnderstanding Vue ComposablesVue 3 introduced a lot of features and concepts, these concepts brought about different ways in which stateful logic and functionalities are handled and managed. One of the notable features of Vue 3 is the Composition API which introduces the ability...00
BABarnabas Ashainbarnabas.hashnode.dev路Jul 9, 2021 路 3 min readJavaScript Fundamentals: Import and ExportHey there 馃憢, Thanks for checking this out, being a long while since I wrote so I will be starting a writing series on Javascript fundamentals for the next couple of weeks. In today's edition, I would try to explain what Javascript import and export...01B
BABarnabas Ashainbarnabas.hashnode.dev路Aug 18, 2020 路 2 min readReact State HookSo I've been learning the react framework for a while now.While watching a tutorial I encountered the useState hook and I was kind of confused cause I was not familiar with the functionality, I was familiar with only classes this.state and this.setS...00
BABarnabas Ashainbarnabas.hashnode.dev路Aug 7, 2020 路 4 min readBasics Of JavaScript Reduce() MethodThe reduce() method is one of Javascript's array method. As a JavaScript developer, the reduce() method comes in handy when working with arrays. In this article, I would try my best to explain the basics behind the reduce() method and how it works. L...05ADTW