mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-07 03:16:41 +00:00
16 lines
377 B
Markdown
16 lines
377 B
Markdown
# Url Module
|
|
|
|
`http://user:pass@sub.example.com:8080/p/a/t/h?query=string#hash`
|
|
|
|

|
|
|
|
## Basics
|
|
|
|
```js
|
|
|
|
const url = new URL('/foo', 'https://example.org/');
|
|
|
|
URL.searchParams
|
|
URL.searchParams.get("queryparam");
|
|
URL.searchParams.has("queryparam");
|
|
```
|