How can I set an expiration time on a specific local storage variable?
Example: If I have a page disclaimer and once the user clicks "accept" I store a certain variable in the local storage. However after 12 hours, I want it to get deleted and ask the user to accept again.
I don't want to store the variable in session storage, because the disclaimer will prompt every time the user opens a new tab.
Cookies would be another solution, but I rather not use it if possible.
Thanks!