URL: searchParams property
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
Note: This feature is available in Web Workers.
The searchParams
read-only property of the
URL
interface returns a URLSearchParams
object allowing
access to the GET
decoded query arguments contained in the URL.
Value
A URLSearchParams
object.
Examples
js
const params = new URL("https://example.com/?name=Jonathan%20Smith&age=18")
.searchParams;
const name = params.get("name");
const age = parseInt(params.get("age"));
console.log(`name: ${name}`); // name: Jonathan Smith
console.log(`age: ${age}`); // age: 18
Specifications
Specification |
---|
URL Standard # dom-url-searchparams |
Browser compatibility
BCD tables only load in the browser