cara menambahkan kembali ke tombol atas di html

// BACK TO TOP BUTTON WITH JQUERY //
const win = $(window);
const b2t = $('.back-top');
const html_body = $('html, body');
//back to top fadetoogle//
win.scroll(() => win.scrollTop() > 100 ? b2t.fadeIn() : b2t.fadeOut());
//back to top effect//
b2t.click(() => html_body.animate({scrollTop: 0}, 2500));
Careful Coyote