diff --git a/doc/api/url.md b/doc/api/url.md index 56fb57aa68858a..cda2beab663c7c 100644 --- a/doc/api/url.md +++ b/doc/api/url.md @@ -907,6 +907,12 @@ If `value` is not provided, removes all name-value pairs whose name is `name`. #### `urlSearchParams.entries()` + + * Returns: {Iterator} Returns an ES6 `Iterator` over each of the name-value pairs in the query. @@ -918,6 +924,9 @@ Alias for [`urlSearchParams[@@iterator]()`][`urlSearchParams@@iterator()`]. #### `urlSearchParams.forEach(fn[, thisArg])` + * Returns: {Iterator} Returns an ES6 `Iterator` over the names of each name-value pair. @@ -1062,6 +1077,12 @@ percent-encoded where necessary. #### `urlSearchParams.values()` + + * Returns: {Iterator} Returns an ES6 `Iterator` over the values of each name-value pair.