kenexa prove it javascript test answers
y. Solution: ```javascript function debounce(func, delay) { let timeoutId; return function(...args) { clearTimeout(timeoutId); timeoutId = setTimeout(() => { func.apply(this, args); }, delay); }; } ``` Explanation: The debounce functio