#መልካም_የፆም_ጊዜ
If you don't understand this code በደንብ ፁሙ #ሎል_lol
let fasting = false;
const startDate = new Date();
startDate.setHours(0, 0, 0, 0); //(12:00 AM)
const endDate = new Date("2025-04-20T03:00:00");
const durationInMilliseconds = endDate - startDate;
fasting = true;
console.log("ፆም/fasting started.");
// setTimeout to handle the end of the fasting period
setTimeout(() => {
fasting = false; // Set fasting to false after 55 days
console.log("ስለፍቅሩ ሲል ከሙታን ተለይቶ ተነስቷል"); // Log the message
console.log("ፆም/fasting ended.");
}, durationInMilliseconds);