문자열을 받아서 각 단어의 마지막 모음이 제거된 새 문자열을 반환하는 JavaScript 함수를 작성해야 합니다.
예를 들어 - 문자열이 -
인 경우const str ='이것은 예시 문자열입니다';
그러면 출력은 다음과 같아야 합니다. -
const 출력 ='Ths s n examplel strng';
예시
다음은 코드입니다 -
const str ='이것은 예제 문자열입니다';const removeLast =word => { const lastIndex =el => word.lastIndexOf(el); const ind =Math.max(lastIndex('a'), lastIndex('e'), lastIndex('i'), lastIndex('o'), lastIndex('u')); return word.substr(0, ind) + word.substr(ind+1, word.length);} const removeLastVowel =str => { const strArr =str.split(' '); return strArr.reduce((acc, val) => { return acc.concat(removeLast(val)); }, []).join(' ');};console.log(removeLastVowel(str));사전>출력
다음은 콘솔의 출력입니다 -
예시 문자열