Skip to content

Instantly share code, notes, and snippets.

@AliBahaari
Last active November 7, 2021 11:14
Show Gist options
  • Select an option

  • Save AliBahaari/878311948b1b2a7152941a19e5f0d0a5 to your computer and use it in GitHub Desktop.

Select an option

Save AliBahaari/878311948b1b2a7152941a19e5f0d0a5 to your computer and use it in GitHub Desktop.
A hook for checking membership of an element.
export const useArrMem = (i, arr) => {
if (arr.indexOf(i) >= 0) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment