mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
10 lines
262 B
HTML
10 lines
262 B
HTML
<!doctype html>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<p align=center id=out></p>
|
|
<script>
|
|
var x = Number(localStorage['test'] || 0)
|
|
document.getElementById('out').innerHTML = x
|
|
x += 1
|
|
localStorage['test'] = x
|
|
</script>
|
|
|