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
console.log(URL_1.search);
|
Output:

Example 2: (Setting query string of the URL)
javascript
URL_1.search = "articles=web_technologies" ;
console.log(URL_1.href);
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