Skip to main content
method URLSearchParams.prototype.forEach

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.

const params = new URLSearchParams([["a", "b"], ["c", "d"]]);
params.forEach((value, key, parent) => {
  console.log(value, key, parent);
});

Parameters

callbackfn: (
value: string,
key: string,
parent: this,
) => void
optional
thisArg: any