Source code
Revision control
Copy as Markdown
Other Tools
<script>
let v = "";
Object.defineProperty(localStorage, "a", {
get() {
return v;
},
set(newValue) {
v = newValue;
},
enumerable: true,
configurable: true,
});
</script>