VOOZH about

URL: https://www.geeksforgeeks.org/node-js/node-js-urlsearchparams-getall/

⇱ Node.js URLSearchParams.getAll() - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js URLSearchParams.getAll()

Last Updated : 11 Jul, 2025
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: Output:
['5', '4']
Example2: When input parameter is not present Output:
['2','7','9']
Supported Browsers:
  • Google Chrome
  • IE
  • Edge
  • Opera
  • Apple Safari
Comment
Article Tags:
Article Tags:

Explore