javascript get scrollbar width code example
Example 1: get current scroll height javascript
document.documentElement.scrollTop || document.body.scrollTop
Example 2: javascript get srollwidth
const box = document.querySelector('.box');
const scrollbarWidth = box.offsetWidth - box .clientWidth;
Example 3: get current scroll height javascript
document.documentElement.scrollTop = document.body.scrollTop = 1000;