Files
30-seconds-of-code/snippets/currentURL.md
Isabelle Viktoria Maciohsek 52880f08ee Update document, window
2020-10-20 11:46:23 +03:00

241 B

title, tags
title tags
currentURL browser,beginner

Returns the current URL.

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