for-coder
434 subscribers
103 photos
55 videos
23 files
139 links
Download Telegram
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
#quiz

let x = 5;
console.log(x++ + ++x);
what is the output of the code above
Anonymous Quiz
33%
12
21%
10
37%
11
4%
13
5%
Undefined
console.log(x);
What is the output of the above the code?
Anonymous Quiz
11%
“11”
2%
12
33%
“125”
4%
7
50%
TypeError
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
#መልካም_የፆም_ጊዜ

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);


If you don't understand this code በደንብ ፁሙ #ሎል_lol
Anybody else's IG feed going nuts? 🔫☠️💥
Please open Telegram to view this post
VIEW IN TELEGRAM
const obj1 = { id: 1 };
const obj2 = { id: 1 };
const obj3 = obj1;

console.log(obj1 === obj2);
console.log(obj1 === obj3);
What is the output of the above code
Anonymous Quiz
26%
false true
11%
true false
46%
true true
13%
false false
4%
error
እንኳን ለ129ኛው 🏆 የዓድዋ ድል በዓል አደረሳችሁ! 🇪🇹🎉

Congratulations on the 129th anniversary of the Victory of Adwa! ✊🏾🔥

⚔️ Battle of Adwa 🏹🏛️
#W's in the chat
Check out this guy lol
Forwarded from ክብነሽ
Learning C++ the right way 😭😁🦍
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
var a = 10;
function foo() {
console.log(a);
var a = 20;
}
foo();