Skip to main content
URLSearchParams.keys - URL - Web documentation
method URLSearchParams.keys
Private
URLSearchParams.keys(): IterableIterator<string>
Returns an iterator allowing to go through all keys contained in this object. ```ts const params = new URLSearchParams([["a", "b"], ["c", "d"]]); for (const key of params.keys()) { console.log(key); } ```

Return Type

IterableIterator<string>