JavaScript實現-檢查字符串結尾-Confirm the Ending

檢查字符串結尾javascript 判斷一個字符串(str)是否以指定的字符串(target)結尾。java 若是是,返回true;若是不是,返回false。app function confirmEnding(str, target) { if(str.endsWith(target)){ return true; }else{ return false; } } conf
相關文章
相關標籤/搜索