AMAnn Mwangiinannmwas1998.hashnode.dev·Feb 1, 2023 · 2 min readHow to Add React Icons to An AppIntroduction Icons are an excellent method for enhancing the look and ease of access of a user interface. They give a precise visual illustration of the task of an element. What are React-icons? React-icons is a small library that helps you add icons...00
AMAnn Mwangiinannmwas1998.hashnode.dev·Jan 31, 2023 · 3 min readHow to Use Double and Triple EqualsIntroduction Equality in JavaScript can be a difficult concept to navigate more so, if you are a beginner. You may have come across cases where === is used and where == is used instead. Does it matter which one you use? What is the difference? In thi...00
AMAnn Mwangiinannmwas1998.hashnode.dev·Dec 5, 2022 · 3 min readChecking User ConnectivityIntroduction Sometimes you might want to enhance your application to notify users they might have lost their internet connection. Users might be visiting your website and receiving a cached version, so it can often appear that their internet is still...00
AMAnn Mwangiinannmwas1998.hashnode.dev·Nov 23, 2022 · 6 min readLearning to Work With Bash ArrayIntroduction Bash is a widely used command-line interpreter for writing scripts. With bash scripting, you can define variables, perform for loops, work with arrays, and so forth. However, we will concentrate on using arrays in bash. Arrays in bash sc...01L
AMAnn Mwangiinannmwas1998.hashnode.dev·Nov 22, 2022 · 3 min readuseMemo and useCallback hooks in ReactIntroduction This useMemo and useCallback hooks use a programming technique called memoization to optimize performance in React applications. In this article, you will learn about memoization. And also how to use useMemo and useCallback. What is memo...01S