문자열을 받아서 각 단어의 마지막 모음이 제거된 새 문자열을 반환하는 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));사전>출력
콘솔의 출력은 -
예시 문자열