Skip to content

Instantly share code, notes, and snippets.

@g-bel
Created May 2, 2022 22:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save g-bel/7ebf71a89f56b4592dc36c93eaae1ba6 to your computer and use it in GitHub Desktop.
Save g-bel/7ebf71a89f56b4592dc36c93eaae1ba6 to your computer and use it in GitHub Desktop.
Cassidy Williams - question of the week 2021-05-02
dict = ['apple', 'banana', 'cranberry', 'strawberry'];
const simpleAutocomplete = (text) => dict.filter(str => str.includes(text));
console.log(JSON.stringify(simpleAutocomplete('app')));
console.log(JSON.stringify(simpleAutocomplete('berry')));
console.log(JSON.stringify(simpleAutocomplete('fart')));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment