เราจำเป็นต้องเขียนฟังก์ชัน JavaScript เพื่อตรวจสอบว่าประโยคนั้นเรียบหรือไม่ ประโยคจะราบรื่นเมื่ออักษรตัวแรกของแต่ละคำในประโยคเหมือนกับอักษรตัวสุดท้ายของคำก่อนหน้า
ตัวอย่าง
ต่อไปนี้เป็นรหัส -
const str = 'this stringt tries sto obe esmooth'; const str2 = 'this string is not smooth'; const isSmooth = str => { const strArr = str.split(' '); for(let i = 0; i < strArr.length; i++){ if(!strArr[i+1] || strArr[i][strArr[i].length -1] === strArr[i+1] [0]){ continue; }; return false; }; return true; }; console.log(isSmooth(str)); console.log(isSmooth(str2))
ผลลัพธ์
ต่อไปนี้เป็นผลลัพธ์ในคอนโซล -
true false