20 lines
310 B
Markdown
20 lines
310 B
Markdown
---
|
|
title: Current URL
|
|
type: snippet
|
|
tags: [browser]
|
|
cover: tropical-bike
|
|
dateModified: 2020-10-20T11:46:23+03:00
|
|
---
|
|
|
|
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/'
|
|
```
|