An open API service indexing awesome lists of open source software.

https://github.com/simonprickett/debounce-function-coding-challenge

Solution we came up with for January 2020's coding challenge at San Diego JS Fundamental JS Meetup.
https://github.com/simonprickett/debounce-function-coding-challenge

front-end-development html javascript meetup-group sandiegojs

Last synced: 9 months ago
JSON representation

Solution we came up with for January 2020's coding challenge at San Diego JS Fundamental JS Meetup.

Awesome Lists containing this project

README

          

# Debounce Function Coding Challenge

This repo contains the solution that [Suze Shardlow](https://suze.dev) and I came up with for January 2020's coding challenge at San Diego JS Fundamental JS Meetup. The challenge was:

> A debounce function accepts two arguments: a time delay and another
> function to execute after no more of a given action has occurred for
> the length of the delay.
>
> They are often using in search inputs that will wait until you stop
> typing for about 200-300 milliseconds before bringing up a list of
> search suggestions.
>
> Without consulting Stackoverflow, Lodash, or Underscore, write a
> debounce function.
>
> Write your solution on Codepen.io, JsFiddle, or Codesandbox.io so you
> can share it with other attendees.

[Try out our solution here!](https://simonprickett.dev/debounce-function-coding-challenge/)