VOOZH about

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

⇱ Node.js urlSearchParams.get() Method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Node.js urlSearchParams.get() Method

Last Updated : 7 Oct, 2021
The urlSearchParams.get() method is an inbuilt application programming interface of class URLSearchParams within url module which is used to get the value for particular name entry present in the URL search params object. Syntax:
const urlSearchParams.get( name )
Parameter: This method takes the name as a parameter. Return value: This method returns the value for particular name entry present in the url search params object. Below programs illustrates the use of urlSearchParams.get() method in Node.js: Example 1: Filename: app.js Run app.js file using the following command:
node app.js
Output:
value for A is Book
Example 2: Filename: app.js Run app.js file using the following command:
node app.js
Output:
value for a is null
Reference: https://nodejs.org/dist/latest-v14.x/docs/api/url.html#url_urlsearchparams_get_name
Comment
Article Tags:

Explore