Intersection Observer & Efficient Scroll Handling

What is the significance of the threshold option in Intersection Observer?
const options = {
  root: null,
  rootMargin: '0px',
  threshold: [0, 0.5, 1.0]
};

const observer = new IntersectionObserver(callback, options);
Next Question (3/20)