Open In App

Node.js URL.search API

Last Updated : 14 Oct, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

URL.search is an inbuilt application programming interface(API) of the URL class within the Node.JS
URL.search API is used to get and set the query part of URL. 
 

Syntax: url.search
url : It is an object created by URL constructor.

Example 1: (Getting query string of the URL) 
 

javascript




//Creating an URL_1 object with URL constructor.
  
//Getting query string of above created URL_1 object
console.log(URL_1.search);


Output: 
 

Example 2: (Setting query string of the URL) 
 

javascript




//Creating an URL_1 object with URL constructor.
const URL_1 = new URL("https://www.geeksforgeeks.org");
  
//Setting query string for URL_1
URL_1.search = "articles=web_technologies";
  
console.log(URL_1.href);
  
//Getting query string after setting 
console.log(URL_1.search);


Output: 
 


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads