Tag: javascript

30 posts

Conditional Rendering

11/12/2020

Conditional Rendering 🤔 Conditional rendering in React isn't difficult. In JSX - the syntax extension used for React - you can use plain…

Array methods in React

11/10/2020

Array Methods in React 🤔 Let’s consider what is an array method. Simply put, an array method is a method that can be called on an array to…

React Hooks 🤔🎣

11/8/2020

Hooks 🎣 API 👉 The additional API that lets you use state and other features in React without writing a class is called Hooks. What Are…

Modules in JavaScript 🤔

10/29/2020

What are Modules in JavaScript? 🤔 The Module Pattern is one of the important patterns in JavaScript. It is a commonly used Design Pattern…

React Context APIs

8/9/2020

Context Apis React's Context API has become the state management tool of choice for many, often replacing Redux altogether. React Context…