body {
  height: 500vh;
}
window.addEventListener('scroll', e => {
  let scrollHeight = window.pageYOffset;
  console.log(scrollHeight)
  if (scrollHeight >= 100) {
    document.body.style.backgroundColor = 'red'
  }
});

External CSS

This Pen doesn't use any external CSS resources.

External JavaScript

This Pen doesn't use any external JavaScript resources.