Node.js URLSearchParams.getAll()

In URLSearchParams interface, the getAll() method returns all the values of the input search parameter in the form of an array.
Syntax:
URLSearchParams.getAll(name)
Returns: An array of string according to the name-value pairs, else an empty array will be returned.
Parameters:
name – Input the name of the parameter.
Example1:
| let params = newURLSearchParams(url.search.slice(1));   //Add a second par parameter.  params.append('par', 4);  console.log(params.getAll('par'))'  | 
Output:
['5', '4']
Example2: When input parameter is not present
| let params = newURLSearchParams(url.search.slice(1));   console.log(params.getAll('bar'))'  | 
Output:
['2','7','9']
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!
 
				 
					


