Node.js urlSearchParams.get() Method
Last Updated :
07 Oct, 2021
Improve
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:
javascript
Run app.js file using the following command:
javascript
Run app.js file using the following command:
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
// Node.js program to demonstrate the
// URLSearchParams.get() method
// Importing the module 'url'
const http = require('url');
// Creating and initializing
// URLSearchParams object
const params = new URLSearchParams();
// Appending value in the object
params.append('A', 'Book');
params.append('B', 'Pen');
params.append('C', 'Pencile');
// Getting the value for entry 'A'
// by using get() api
const value = params.get('A');
// Display the result
console.log("value for A is " + value);
node app.jsOutput:
value for A is BookExample 2: Filename: app.js
// Node.js program to demonstrate the
// URLSearchParams.get() method
// Importing the module 'url'
const http = require('url');
// Creating and initializing
// URLSearchParams object
const params = new URLSearchParams();
// Appending value in the object
params.append('A', 'Book');
params.append('B', 'Pen');
params.append('C', 'Pencile');
// Getting the value for entry 'A'
// by using get() api
const value = params.get('a');
// Display the result
console.log("value for a is " + value);
node app.jsOutput:
value for a is nullReference: https://nodejs.org/dist/latest-v14.x/docs/api/url.html#url_urlsearchparams_get_name