Skip to main content
Module

x/deno/js/url_search_params.ts>URLSearchParams#keys

A modern runtime for JavaScript and TypeScript.
Go to Latest
method URLSearchParams.prototype.keys
import { URLSearchParams } from "https://deno.land/x/deno@v0.1.12/js/url_search_params.ts";

Returns an iterator allowing to go through all keys contained in this object.

  for (const key of searchParams.keys()) {
    console.log(key);
  }

Returns

Iterable<string>