Files
30-seconds-of-code/snippets/currentURL.md
2022-12-04 22:20:49 +02:00

346 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Current URL browser blog_images/tropical-bike.jpg 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/'