第494天 给定特定的字符串,写个方法判断是否以元字母结尾 [3+1官网](http://www.h-camel.com/index.html) [我也要出题](http://www.h-camel.com/contribution.html)
Activity
wheatup commentedon Aug 22, 2020
/[aeiou]$/i
longhui520 commentedon Aug 22, 2020
(str)=>/[aeiou]$/i
.test(str)