Files
30-seconds-of-code/snippets/current-URL.md
2017-12-12 07:11:37 -05:00

8 lines
121 B
Markdown

### Current URL
Use `window.location.href` to get current URL.
```js
const currentUrl = _ => window.location.href;
```