Files
30-seconds-of-code/snippets/currentURL.md
Isabelle Viktoria Maciohsek 52880f08ee Update document, window
2020-10-20 11:46:23 +03:00

17 lines
241 B
Markdown

---
title: currentURL
tags: browser,beginner
---
Returns the current URL.
- Use `Window.location.href` to get the current URL.
```js
const currentURL = () => window.location.href;
```
```js
currentURL(); // 'https://www.google.com/'
```