$(location).attr('href', 'https://google.com');
Solution #1
for Jquery you can use following code
$(location).prop('href', 'https://www.codegrepper.com/profile/shafeeque-ahmad')
Solution #2
for pure javascript you can use following solution
window.location.href='otherpage.com';
window.location.assign('otherpage.com');
//and...
window.location.replace('otherpage.com');
$(location).attr('href', 'www.google.co.in');