JavaScript Program To Get The Current URL

Example: Get The Current URL

// program to get the URL

const url1 = window.location.href;
const url2 = document.URL;
console.log(url1);
console.log(url2);

Output

https://www.google.com/
https://www.google.com/

In the above program, window.location.href property and document.URL property are used to get the URL of the current page.

Both the window.location.href and the document.URL properties return the URL of the current page.

Did you find this article helpful?