This media is not supported in your browser
VIEW IN TELEGRAM
☀️ GOOD MORNING Y'ALL
Short Demo video of the ai video generated via Qwen_ai
What is the output of the above the code?
Anonymous Quiz
11%
“11”
2%
12
33%
“125”
4%
7
50%
TypeError
#መልካም_የፆም_ጊዜ
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);