-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: add examples for WHATWG URL objects
Signed-off-by: James M Snell <[email protected]> PR-URL: #37822 Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Myles Borins <[email protected]> Reviewed-By: Darshan Sen <[email protected]>
- Loading branch information
Showing
1 changed file
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -67,6 +67,31 @@ const myURL = | |
url.parse('https://user:[email protected]:8080/p/a/t/h?query=string#hash'); | ||
``` | ||
|
||
### Constructing a URL from component parts and getting the constructed string | ||
|
||
It is possible to construct a WHATWG URL from component parts using either the | ||
property setters or a template literal string: | ||
|
||
```js | ||
const myURL = new URL('https://example.org'); | ||
myURL.pathname = '/a/b/c'; | ||
myURL.search = '?d=e'; | ||
myURL.hash = '#fgh'; | ||
``` | ||
|
||
```js | ||
const pathname = '/a/b/c'; | ||
const search = '?d=e'; | ||
const hash = '#fgh'; | ||
const myURL = new URL(`https://example.org${pathname}${search}${hash}`); | ||
``` | ||
|
||
To get the constructed URL string, use the `href` property accessor: | ||
|
||
```js | ||
console.log(myURL.href); | ||
``` | ||
|
||
## The WHATWG URL API | ||
|
||
### Class: `URL` | ||
|