Node | URL.hash API
The url.hash is an inbuilt application programming interface of class URL with in url module which is used to get and set the fragment portion of the URL.
Syntax:
const url.hash
Return value: It gets and sets the fragment portion of the URL.
Below programs illustrate the use of url.hash Method:
Example 1:
// node program to demonstrate the // url.hash API as Setter //importing the module 'url' const http = require( 'url' ); // creating and initializing myURL // Display href value of myURL before change console.log( "Before Change" ); console.log(myURL.href); // assinging fragment portion // using hash console.log(); myURL.hash = 'rahim' ; // Display href value of myURL after change console.log( "After Change" ); console.log(myURL.href); |
Output:
Before Change https://example.org/foo#ram After Change https://example.org/foo#rahim
Example 2:
// node program to demonstrate the // url.hash API as Getter //importing the module 'url' const http = require( 'url' ); // creating and initializing myURL // getting the fragment portion // using hash const hash = myURL.hash; // Display hash value console.log(hash); |
Output:
#ram
NOTE: The above program could be run by using the node myapp.js command .
Reference:
https://nodejs.org/dist/latest-v10.x/docs/api/url.html#url_url_hash
Recommended Posts:
- Node js | OS
- Why Node.js ?
- Node | URLSearchParams.get()
- Node | URL.domainToUnicode
- Node | URL.domainToASCII
- Node | URL.resolve(from,to) API
- Node | URL.host API
- Node.js | pop() function
- Routing in Node.js
- Node | URL.pathname API
- Node | URL.format API
- Node | URL.href API
- Node | URL.password API
- Node | URL.username API
- Node | URL.search API
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.