javascript get current url

JavaScript
var currentUrl = window.location.href;var currentLocation = window.location;window.location.hostnamewindow.location.pathname; // Returns path only (/path/example.html)
window.location.href;     // Returns full URL (https://example.com/path/example.html)
window.location.origin;   // Returns base URL (https://example.com)
Source

Also in JavaScript: