Javascript String startWithVowel()

Description

Javascript String startWithVowel()


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



PreviousNext

Related