Skip to content

Instantly share code, notes, and snippets.

@wmurch
Created May 15, 2019 19:52
Show Gist options
  • Save wmurch/f413b2873e6d88208ec616b211bdff93 to your computer and use it in GitHub Desktop.
Save wmurch/f413b2873e6d88208ec616b211bdff93 to your computer and use it in GitHub Desktop.
check if x is in array a
function check(a,x){
return (a.includes(x))? true : false
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment