Interview Prep Quiz Practice
Active Recall Drill Session
← Exit SessionQuestion 1 of 1
mediumInterview Prep
Given the leading-edge throttle implementation from this topic with interval=100, calling log(1) at t=0, log(2) at t=50, and log(3) at t=120 — which calls actually fire?
code
// throttle(fn, 100) as defined in Concept
log(1); // t=0
log(2); // t=50
log(3); // t=120