We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3553eb commit 3c5ae76Copy full SHA for 3c5ae76
doc/api/url.md
@@ -251,15 +251,15 @@ const myURL = new URL('https://example.org:81/foo');
251
console.log(myURL.hostname);
252
// Prints example.org
253
254
-// Setting an invalid hostname is ignored:
255
-myURL.hostname = 'example.com:82';
+// Setting the hostname does not change the port
+myURL.hostname = 'example.com';
256
console.log(myURL.href);
257
-// Prints https://example.org:81/foo
+// Prints https://example.com:81/foo
258
259
// Use myURL.host to change the hostname and port
260
-myURL.host = 'example.com:82';
+myURL.host = 'example.org:82';
261
262
-// Prints https://example.com:82/foo
+// Prints https://example.org:82/foo
263
```
264
265
Invalid host name values assigned to the `hostname` property are ignored.
0 commit comments