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