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