Files
30-seconds-of-code/snippets/js/s/current-url.md
Angelos Chalaris 4d0316a062 Update covers
2023-05-07 22:25:00 +03:00

337 B

title, type, language, tags, cover, dateModified
title type language tags cover dateModified
Current URL snippet javascript
browser
purple-sunset-waves 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/'