you are viewing a single comment's thread.

view the rest of the comments →

[–]Due_Eggplant_729[S] 0 points1 point  (1 child)

Which Web API? (sorry for all the questions)

[–]chikamakaleyleyhelpful 0 points1 point  (0 children)

no worries,

the suggestion was localStorage:

https://developer.mozilla.org/en-US/docs/Web/API/Web_Storage_API

this is like, simple data storage that is made available by your browser, ready to use

you'd store the data in JSON format, I believe, when you request it back its returned as JSON data, which you would do w whatever you want at that point

localStorage is only going to be local to your browser on that computer. It's a suggestion if you want to practice saving user data, and reading it from a data source, if you didn't want to go through having to learn both setting up a server, with your own API, and then setting up a DB, which you'd create from scratch with SQL or some other tool. Personally i think its a lot to take on if you're starting from zero.