Open In App

Node.js URLSearchParams.get()

Improve
Improve
Like Article
Like
Save
Share
Report

In URLSearchParams interface, the get() method returns the first value of the input search parameter.

Syntax:

URLSearchParams.get(name)

Returns:The string will be returned if the name-value pair is found, else null will be returned.

Parameters:
name – Input the name of the parameter.

Example1: When input parameter is present




var URL = require('url').URL;
let params = new URLSearchParams(url.search.substring(1));
let name = params.get("name"); // is the string "Deepak"
let age = parseInt(params.get("age"), 10); // is the number 20
console.log(name)
console.log(age)


Output:

Deepak
20

Example2: When input parameter is not present




var URL = require('url').URL;
let params = new URLSearchParams(url.search.substring(1));
let address = params.get("address");
console.log(address)


Output:

null

Supported Browsers:

  • Google Chrome
  • IE
  • Edge
  • Opera
  • Apple Safari

Last Updated : 14 Oct, 2021
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads