0
Using HTML5, websites can store data on user's computers .Is this secure and faster than JavaScript cookies??
2 Answers
+ 1
A javascript cookie is a string that is given a removal date and you can only store one. It is passed to JS and the server.
localStorage however only stores a string with no removal date and does not send to the server. It is great for front-end saved data.
0
thanks boss...