Files
30-seconds-of-code/js/snippets/current-url.md
2023-05-03 20:39:23 +03:00

310 B

title, type, tags, cover, dateModified
title type tags cover dateModified
Current URL snippet
browser
tropical-bike 2020-10-20T11:46:23+03:00

Returns the current URL.

  • Use Window.location.href to get the current URL.
const currentURL = () => window.location.href;
currentURL(); // 'https://www.google.com/'