windows.locations.href code example
Example 1: window.href
//its actually
window.location.href = "/App/Home"
//or
window.location.href = "https://www.google.com/"
Example 2: javascript location.href
//example 1
document.getElementById("lbl_url").innerHTML = "Page location is " + window.location.href;
//example 2
var x = location.href;