Articles in this series
Intermediate React Interview # Demo Code 1: fetch Data const [fetchData, setFetchData] = React.useState(null) React.useEffect(() => { ...
Review and Explore Node.js Node Globals: __dirname __filename global os, fs , http don't need install: const os = require("os") // system...
Learn about TypeScript Types by Inference # let helloWorld = "Hello World"; Defining Types You can explicitly describe this object’s shape using an...
Learn about useMemo React hooks are amazing. Being able to put all the logic and state management within a function component allows for mind blowing...
Improve Assessment - Student Profiles We noticed you assumed IDs are always integers, start at 1, and only increment by 1. This breaks when the IDs...
Improve Assessment - Student Profiles Todos: IDs use useCallback and useMemo memorize the average number unable to search by full name The fetching...