- What is
Microservice
? - What is
Monolith architecture
? - What is the
difference
between `Monolith and Microservice? - Why do we need a
useEffect Hook
? - What is
Optional Chaining
? - What is
Shimmer UI
? - What is the
difference
betweenJS expression and JS statement
? - What is
Conditional Rendering
? explain with a code example. - What is
CORS
? - What is
async and await
? - What is the use of
const json = await data.json()
; ingetRestaurants()
?
- Play with the
useEffect Hook
to see when it is called? (before or after render) - Play with the
dependency array
in useEffect Hook. - Play with the
developer console
by putting adebugger
in render anduseEffect
. - Call an
actual API call
. Handle Error
in yourAPI call
.- Build
Shimmer UI
whendata is not loaded
. Render your UI
withactual API data
.- Make
Search functionality
work. - Make a
Login Logout
button thattoggles with a state
.