Node.js URLSearchParams.delete()

In URLSearchParams interface, the delete() method deletes the parameter specified by user and all its associated values.
Syntax:
URLSearchParams.delete(name)
Parameters:
name – The name of the parameter to be deleted.
Example 1:
let params = new URLSearchParams(url.search.slice(1)); // Delete the par parameter. params.delete('par'); console.log(url) |
Output:
https://example.com?bar=2
Example 2:
let params = new URLSearchParams(url.search.slice(1)); // Delete the foo parameter. params.delete('foo'); console.log(url) |
Output:
https://example.com?par=3
Supported Browsers:
- Google Chrome
- IE
- Edge
- Opera
- Apple Safari
Whether you’re preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, zambiatek Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we’ve already empowered, and we’re here to do the same for you. Don’t miss out – check it out now!


