Open In App
Related Articles

Node.js URL.search API

Improve Article
Improve
Save Article
Save
Like Article
Like

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: 
 

Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 14 Oct, 2021
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials