Javascript Reduce Visualized
Props & State Cheat Sheet
Here’s a simple cheat sheet with some basic things you might want to do with props and state. Setting Props… Read more Props & State Cheat Sheet
What’s the difference between Lazy State Instantiation and the useEffect dependency array?
Question From my understanding, Lazy State Instantiation and the useEffect dependency array both keep React from doing work again that… Read more What’s the difference between Lazy State Instantiation and the useEffect dependency array?
JavaScript Short Circuiting: Using And/Or Instead of If-Else
The And && and Or || operators have a cool trick in Javascript. They don’t necessarily evaluate to a strict… Read more JavaScript Short Circuiting: Using And/Or Instead of If-Else
Rules of Boolean Logic in JavaScript
Boolean logic is like it’s own kind of weird math. Understanding how to get that weird math to do what… Read more Rules of Boolean Logic in JavaScript
Practice with Boolean Logic in JavaScript
Boolean logic is like it’s own kind of weird math. Understanding how to get that weird math to do what… Read more Practice with Boolean Logic in JavaScript
AJAX with Fetch and CrudCrud
While you’re learning AJAX and Fetch it’s helpful to have a practice REST API to work with. CrudCrud is a… Read more AJAX with Fetch and CrudCrud
React Command Line Guide for Beginners
To get your React app started, there are a few essential commands. create-react-app This command is the big one. It… Read more React Command Line Guide for Beginners
React Props & State: Exercise 3 – Events
This is the third exercise in the series. You may want to start with the first one and the second… Read more React Props & State: Exercise 3 – Events