To scroll to bottom of div with JavaScript, we set scrollTop to scrollHeight.
For instance, we write
const objDiv = document.getElementById("your_div");
objDiv.scrollTop = objDiv.scrollHeight;
to get the div with getElementById.
Then we set its scrollTop property to its scrollHeight value to scroll to the bottom.