Skip to content

Instantly share code, notes, and snippets.

@WesleySmits
Created September 23, 2022 20:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save WesleySmits/652968a2b0caf891e2b4a1cc1cb09af3 to your computer and use it in GitHub Desktop.
Save WesleySmits/652968a2b0caf891e2b4a1cc1cb09af3 to your computer and use it in GitHub Desktop.
URL Object: Reading Information
const url = new URL('https://medium.com/@WesleySmits?foo=bar#test');
console.log(url.hash); // '#test'
console.log(url.search); // '?foo=bar'
console.log(url.searchParams.get('foo')); // 'bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment