Wednesday, 7 June 2017

Benefit of html5 localstorage over cookies?








What's the benefit of html5 local storage over cookies? I know local storage can run client side so potentially could have better performance, but what are the uses beyond this?

No comments:

Post a Comment

c++ - Does curly brackets matter for empty constructor?

Those brackets declare an empty, inline constructor. In that case, with them, the constructor does exist, it merely does nothing more than t...