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.
- Host: GitHub
- URL: https://github.com/simonprickett/debounce-function-coding-challenge
- Owner: simonprickett
- License: mit
- Created: 2020-01-23T20:08:31.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-01-23T21:22:35.000Z (almost 6 years ago)
- Last Synced: 2025-02-09T09:29:50.760Z (11 months ago)
- Topics: front-end-development, html, javascript, meetup-group, sandiegojs
- Language: HTML
- Homepage: https://simonprickett.dev/
- Size: 3.91 KB
- Stars: 1
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/)