method URLSearchParams.forEach
Private
URLSearchParams.forEach(callbackfn: (value: string,key: string,parent: this,) => void,thisArg?: any,): void
Calls a function for each element contained in this object in
place and return undefined. Optionally accepts an object to use
as this when executing callback as second argument.
```ts
const params = new URLSearchParams([["a", "b"], ["c", "d"]]);
params.forEach((value, key, parent) => {
console.log(value, key, parent);
});
```
void