Reading-Notes
code fellows 401
Read: 36 - Application State with Redux
What are the advantages of storing tokens in “Cookies” vs “Local Storage”
Cookies are mainly for reading server-side. Local storage can only be read by the client-side.
Explain 3rd party cookies.
Cookies that are set by a website other than the one the user is currently on.
How do pixel tags work?
They are a pixel tag that attach to a browser and collect information about an anonymous users on the Internet.
Vocab:
cookies: a cookie is a sample of text dropped onto a browser while viewing a website.
authorization: process by which a server determines if the client has permission to use a resource or access a file.
access control: determines what roles can access specific abilities.
conditional rendering: Conditional rendering is a term to describe the ability to render different user interface (UI) markup if a condition is true or false.