13 lines
190 B
HTML
13 lines
190 B
HTML
<script>
|
|
let v = "";
|
|
Object.defineProperty(localStorage, "a", {
|
|
get() {
|
|
return v;
|
|
},
|
|
set(newValue) {
|
|
v = newValue;
|
|
},
|
|
enumerable: true,
|
|
configurable: true,
|
|
});
|
|
</script>
|