Skip to content

Commit 51c2c51

Browse files
nodeavtrivikr
authored andcommitted
doc: explain edge case when assigning port to url
numbers which are coerced to scientific notation via .toString(), will behave unexpectedly when assigned to a url's port. Fixes: #19595 PR-URL: #19645 Reviewed-By: Vse Mozhet Byt <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Tiancheng "Timothy" Gu <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]>
1 parent 3650972 commit 51c2c51

File tree

1 file changed

+22
-5
lines changed

1 file changed

+22
-5
lines changed

doc/api/url.md

+22-5
Original file line numberDiff line numberDiff line change
@@ -313,8 +313,9 @@ myURL.port = 1234.5678;
313313
console.log(myURL.port);
314314
// Prints 1234
315315

316-
// Out-of-range numbers are ignored
317-
myURL.port = 1e10;
316+
// Out-of-range numbers which are not represented in scientific notation
317+
// will be ignored.
318+
myURL.port = 1e10; // 10000000000, will be range-checked as described below
318319
console.log(myURL.port);
319320
// Prints 1234
320321
```
@@ -324,9 +325,25 @@ in the range `0` to `65535` (inclusive). Setting the value to the default port
324325
of the `URL` objects given `protocol` will result in the `port` value becoming
325326
the empty string (`''`).
326327

327-
If an invalid string is assigned to the `port` property, but it begins with a
328-
number, the leading number is assigned to `port`. Otherwise, or if the number
329-
lies outside the range denoted above, it is ignored.
328+
Upon assigning a value to the port, the value will first be converted to a
329+
string using `.toString()`.
330+
331+
If that string is invalid but it begins with a number, the leading number is
332+
assigned to `port`.
333+
Otherwise, or if the number lies outside the range denoted above,
334+
it is ignored.
335+
336+
Note that numbers which contain a decimal point,
337+
such as floating-point numbers or numbers in scientific notation,
338+
are not an exception to this rule.
339+
Leading numbers up to the decimal point will be set as the URL's port,
340+
assuming they are valid:
341+
342+
```js
343+
myURL.port = 4.567e21;
344+
console.log(myURL.port);
345+
// Prints 4 (because it is the leading number in the string '4.567e21')
346+
```
330347

331348
#### url.protocol
332349

0 commit comments

Comments
 (0)