From 8fdf077efc36f928f168a9f593a4274a5d069ac6 Mon Sep 17 00:00:00 2001 From: Rishabh Mehan Date: Fri, 5 Jun 2020 01:23:22 -0700 Subject: [PATCH] doc,url: fix url.hostname example PR-URL: https://github.com/nodejs/node/pull/33735 Reviewed-By: Gireesh Punathil Reviewed-By: Antoine du Hamel --- doc/api/url.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/api/url.md b/doc/api/url.md index dff038976fba63..5276663749adb8 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -210,9 +210,15 @@ const myURL = new URL('https://example.org:81/foo'); console.log(myURL.hostname); // Prints example.org +// Setting the hostname does not change the port myURL.hostname = 'example.com:82'; console.log(myURL.href); // Prints https://example.com:81/foo + +// Use, myURL.host to change the hostname and port +myURL.host = 'example.org:82'; +console.log(myURL.href); +// Prints https://example.org:82/foo ``` Invalid host name values assigned to the `hostname` property are ignored.