Javascript String startWithVowel()
startWithVowel()
String.prototype.startWithVowel = function () { return this.charAt(0).toLowerCase().isVowel(); };