Skip to content

Instantly share code, notes, and snippets.

@hayesch19
Created August 14, 2019 17:37
Show Gist options
  • Save hayesch19/14e695438e3d4a2db5761737d906ef31 to your computer and use it in GitHub Desktop.
Save hayesch19/14e695438e3d4a2db5761737d906ef31 to your computer and use it in GitHub Desktop.
You Only Need One - Codewar
function check(a,x){
if (a.includes (x)) {
return true;
} else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment