January 21
This media is not supported in your browser
VIEW IN TELEGRAM
☀️ GOOD MORNING Y'ALL
January 25
January 29
January 29
January 29
February 9
Short Demo video of the ai video generated via Qwen_ai
February 9
February 9
February 15
What is the output of the above the code?
Anonymous Quiz
11%
“11”
2%
12
33%
“125”
4%
7
50%
TypeError
February 15
February 21
February 22
#መልካም_የፆም_ጊዜ
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);
February 23
February 26
February 28
const obj1 = { id: 1 };
const obj2 = { id: 1 };
const obj3 = obj1;
console.log(obj1 === obj2);
console.log(obj1 === obj3);
March 1
What is the output of the above code
Anonymous Quiz
27%
false true
11%
true false
44%
true true
13%
false false
4%
error
March 1
March 2