Skip to main content
method URLSearchParams.getAll
private
URLSearchParams.getAll(name: string): string[]
Deprecated

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

searchParams.getAll('name');

Parameters

name: string

Return Type

string[]
Back to top