Intersection Observer & Efficient Scroll Handling

What is the significance of the time property in IntersectionObserverEntry?
const callback = (entries) => {
  entries.forEach(entry => {
    const timeSinceStart = entry.time - performance.now();
    if (entry.isIntersecting) {
      trackVisibility(entry.target, timeSinceStart);
    }
  });
};
Next Question (10/20)