Files
30-seconds-of-code/snippets/currentURL.md
2017-12-28 08:30:19 +00:00

196 B

currentURL

Returns the current URL.

Use window.location.href to get current URL.

const currentURL = () => window.location.href;
currentURL(); // 'https://google.com'