Note: Official Docs Here
CRUD:
Letter | Stands For | Verb | Use Case |
---|---|---|---|
C | Create | POST | Making new data |
R | Read | GET | Fetching pre-existing data |
U | Update | PATCH | Editing Data |
D | Destroy | DELETE | Removing Data |
Note: Official Docs Here
CRUD:
Letter | Stands For | Verb | Use Case |
---|---|---|---|
C | Create | POST | Making new data |
R | Read | GET | Fetching pre-existing data |
U | Update | PATCH | Editing Data |
D | Destroy | DELETE | Removing Data |
These are the major features we’re looking for at each code review, in addition to your other progress.
If a route has a (*)
next to it, it means that it should require a logged in user to be present, if a route has a (**)
next to it, the logged in user should be the owner of the modified object. If a route has (*admin)
next to it, the logged in user must be an admin user (user.isAdmin === true
). Any (**)
route should also be accessible by any (*admin)
user.
Using the same notation above. If a user is authorized, show the component. If the user is not authorized, either (1) display an error message or (2) redirect the user to a different route/component (any component that would be appropriate)
First install Git.
Then, in your terminal:
git config --global user.name "Your Name"
git config --global user.email "your_email@real_email.edu"
Write a function that determines whether an input string has balanced brackets.
You are given an input string consisting of brackets—square [ ]
, round ( )
, and curly { }
. The input string can include other text. Write a function that returns either true
if the brackets in the input string are balanced or false
if they are not. Balanced means that any opening bracket of a particular type must also have a closing bracket of the same type.
An empty input string or a string without brackets can also be considered "balanced".
THIS IS A CHROME EXPERIMENT | |
<div id="demo"></div> |