আমাদের একটি জাভাস্ক্রিপ্ট ফাংশন লিখতে হবে যা একটি স্ট্রিং নেয় এবং প্রতিটি শব্দের শেষ স্বর দিয়ে একটি নতুন স্ট্রিং ফিরিয়ে দেয়।
উদাহরণস্বরূপ:যদি স্ট্রিং হয় −
const str ='এটি একটি উদাহরণ স্ট্রিং';
তারপর আউটপুট −
হওয়া উচিতconst output ='Ths n exampl 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(' '); strArr.reduce((acc, val) => { ফেরত acc.concat(removeLast(val)); }, []).join('');};console.log(removeLastVowel(str));পূর্বে>আউটপুট
কনসোলে আউটপুট হবে −
এই s n exampl strng