Files
30-seconds-of-code/snippets/currentURL.md
Isabelle Viktoria Maciohsek 8bf67754ce Make expertise a field
2022-03-01 20:21:45 +02:00

329 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Current URL 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/'