Node.js URLSearchParams.set()
Last Updated :
14 Oct, 2021
Improve
In URLSearchParams interface, the set() method sets the value given as an input parameter.If there are several values matching the input parameter then it deletes the others and if the value does not exist then it creates it.
Syntax:
javascript
Output:
javascript
OUTPUT:
URLSearchParams.set(name, value)Parameters: name - Input the name of the parameter. value - Input the value of the parameter. Example 1:
let url = new URL('https://example.com?fo=4&bar=6');
let params = new URLSearchParams(url.search.slice(1));
//Add another parameter.
params.set('par', 5);
console.log(params.toString());
fo=4&bar=6&par=5Example 2: Adding multiple parameters
let url = new URL('https://example.com?a=1&b=2');
let params = new URLSearchParams(url.search.slice(1));
//Add another parameter.
params.set('c', 3);
params.set('d', 4);
console.log(params.toString());
a=1&b=2&c=3&d=4Supported Browsers:
- Google Chrome
- IE
- Edge
- Opera
- Apple Safari