sessionStorageとlocalStorageに関するドキュメントをいくつか読んだのですが、スコープ、ドメイン、特定のページがわかりません。
たとえば、次のページがあるとします。
http://example.com/products.aspx?productID=1
http://example.com/products.aspx?productID=2
http://example.com/services.aspx?serviceID=3
上記の各ページで実行する場合(idvalueがクエリ文字列の値です):
localStorage.setItem('ID',idvalue);
最終的に3つの異なる値が保存されるのですか、それとも値が互いに上書きされるのですか?