Skip to content

Instantly share code, notes, and snippets.

@fakefarm
Last active August 29, 2015 14:04
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 fakefarm/e74f7a4d0121d428180c to your computer and use it in GitHub Desktop.
Save fakefarm/e74f7a4d0121d428180c to your computer and use it in GitHub Desktop.
indexOf
// Use index of to check contents of array.
// A function that takes a character (i.e. a string of length 1) and returns true if it is a vowel, false otherwise.
function isVowel(letter) {
vowels = ['a','e','i','o','u'];
var result = vowels.indexOf(letter)
if (result >= 0) {
return true;
}
else {
return false;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment