Files
30-seconds-of-code/snippets/currentURL.md
Isabelle Viktoria Maciohsek 821f442bec Remove url tag
2020-10-18 14:19:29 +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/'