Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/deno/ext/url/lib.deno_url.d.ts>URLSearchParams#getAll

A modern runtime for JavaScript and TypeScript.
Go to Latest
method URLSearchParams.prototype.getAll
import { URLSearchParams } from "https://deno.land/x/deno@v1.28.0/ext/url/lib.deno_url.d.ts";

Returns all the values associated with a given search parameter as an array.

searchParams.getAll('name');

Parameters

name: string

Returns

string[]