© 2026 LinearBytes Inc.
Search posts, tags, users, and pages
Ranjith
I'm fresher from the non-IT field.I need to know about how the values can be store in local using javascript and i need edit,delete option also?
Ben Buchanan (200ok)
I make some bits of the web.
You're almost certainly looking for localStorage - developer.mozilla.org/en-US/docs/Web/API/Storage/… (or if you want session-only storage, the cunningly named sessionStorage ;)).
localStorage
sessionStorage
Mikey Scimeca
PTO
Are you talking about storing Cookies or Sessions?
Ben Buchanan (200ok)
I make some bits of the web.
You're almost certainly looking for
localStorage- developer.mozilla.org/en-US/docs/Web/API/Storage/… (or if you want session-only storage, the cunningly namedsessionStorage;)).