Skip to main content
Module

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

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

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

  for (const value of searchParams.values()) {
    console.log(value);
  }

Returns

Iterable<string>