// เมื่อกดปุ่มทำนาย $w.onReady(function () { $w('#predictButton').onClick(() => { let phone = $w('#phoneInput').value; // ดึงค่าจากฟอร์ม if(!phone || phone.length < 10){ $w('#resultText').text = "กรุณากรอกเบอร์มือถือให้ครบ"; return; } // ฟังก์ชันทำนายดวง let prediction = predictNumber(phone); $w('#resultText').text = prediction; }); }); // ฟังก์ชันทำนายเลขมือถือ function predictNumber(number){ let sum = number.split('').reduce((a,b)=> a + parseInt(b), 0); if(sum % 2 === 0) return "การเงินดี ความรักปานกลาง การงานรุ่ง"; else return "การเงินปานกลาง ความรักโดดเด่น การงานดี"; }
top of page

My Portfolio

Welcome to my portfolio. Here you’ll find a selection of my work. Explore my projects to learn more about what I do.

bottom of page