Day 75/? of coding
Day 75/100 of #100DaysOfCode
Project Update: Blog API (part 3)

++ Progress: Found a good-looking "write-post" React template. I have to figure out the imports and libraries used, and it is A LOT!

++ Learned
đź”’ httpOnly Cookies:
When set to true, the browser prevents frontend JavaScript from accessing the cookie (enhances security against XSS attacks).
You can't use document.cookie to read these cookies—they’re only sent to the server automatically with each request.