14 lines
196 B
Markdown
14 lines
196 B
Markdown
### currentURL
|
|
|
|
Returns the current URL.
|
|
|
|
Use `window.location.href` to get current URL.
|
|
|
|
```js
|
|
const currentURL = () => window.location.href;
|
|
```
|
|
|
|
```js
|
|
currentURL(); // 'https://google.com'
|
|
```
|