Firefox Tomorrow

web api instance method

URLSearchParams: getAll() method

View on MDN ↗

Available in workers

The getAll() method of the URLSearchParams interface returns all the values associated with a given search parameter as an array.

Syntax

getAll(name)

Parameters

  • name
    • : The name of the parameter to return.

Return value

An array of strings, which may be empty if no values for the given parameter are found.

Examples

const url = new URL("https://example.com?foo=1&bar=2");
const params = new URLSearchParams(url.search);

// Add a second foo parameter.
params.append("foo", 4);

console.log(params.getAll("foo")); // ["1", "4"]

Specifications

SpecificationsStandards references are available on the canonical MDN page.

Browser compatibility

Browser compatibilityCompatibility data is available on the canonical MDN page.