Skip to main content
Module

x/netzo/deno.d.ts>URLSearchParams#forEach

SDK for Netzo, the open Web platform to unify IoT devices, applications and services.
Go to Latest
method URLSearchParams.prototype.forEach
import { URLSearchParams } from "https://deno.land/x/netzo@v0.1.10/deno.d.ts";

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