Files
30-seconds-of-code/snippets/currentURL.md
Isabelle Viktoria Maciohsek 27c168ce55 Bake date into snippets
2021-06-13 13:55:00 +03:00

317 B

title, tags, firstSeen, lastUpdated
title tags firstSeen lastUpdated
currentURL browser,beginner 2017-12-18T11:05:03+02:00 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/'