By Ira Herman
Use this workflow when working with teams to take advantage of Pull Requests and keep the master branch clean.
Example resource: fruits
In I.N.D.U.C.E.S. route order:
URL | HTTP Verb | Action | Notes |
---|---|---|---|
/fruits/ | GET | index | INDEX when a user types localhost:3000/fruits in browser this route shows a list or index of all fruits |
/fruits/new | GET | new | NEW when a user types localhost:3000/fruits/new in browser this route shows the user a form to create a NEW fruit |
By Ira Herman
This code challange prompt is modeled after real-world take-home code challenges/prompts many companies use as part of their technical interview process.
This will help you practice/prepare to build a mini-project off of specs, and give you practice/reinforcement using ReactJS with an API back end.
By Ira Herman
Live Video Walkthrough (bonus lesson) recording
================
Given the JS Object:
const user = { name: "Ira", email: "[email protected]", favColor: "blue" };