I simply want to scroll a page to the bottom
seems - it is a deep secret
$(window).on('load', function(){
    let y = $('body').height();
    console.log(y);  // 2285
    $('document').scrollTop(y);
});
also tried:
$('document').scrollTop(y + 'px');  
$('body').scrollTop(y);
$('body').scrollTop(y + 'px');
also tried some code from here - without success
please help