<script>
// localhost/html.html?club=one&more=two#showMe
// https://developer.mozilla.org/en-US/docs/Web/API/Location
// https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/hash
console.log(window.location.hash)
// https://developer.mozilla.org/en-US/docs/Web/API/HTMLHyperlinkElementUtils/search
console.log(window.location.search)
const query = new URLSearchParams(window.location.search.slice(1))
console.log([...query.entries()].map(([key, value]) => ({ key, value })))
</script>