• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1This is a test to make sure you can get and set values in SessionStorage by index.
2Setting FOO using the index setter.
3Reading FOO:
4BAR
5BAR
6BAR
7
8Setting FOO again, using setItem.
9Reading FOO:
10BAZ
11BAZ
12BAZ
13
14Setting FOO again, using the index setter.
15Reading FOO:
16BAT
17BAT
18BAT
19
20Setting FOO again, using property-slot syntax
21Reading FOO:
22BATMAN
23BATMAN
24BATMAN
25
26Removing FOO, then trying to read it
27Reading FOO:
28undefined
29undefined
30null
31
32
33