What is the output of the above the code?
Anonymous Quiz
10%
“11”
2%
12
32%
“125”
4%
7
52%
TypeError
This media is not supported in your browser
VIEW IN TELEGRAM
Sometimes, pain is good "
Have a nice weekend, I'm out for now 🚶➡️
😢1😭1
📝 Top 10 Clean Code Rules
🕐 2m read time
»»»»For More ««««
🕐 2m read time
🚫 No Code Comments – Strive for self-explanatory code; let the code speak for itself.
🗑 Delete Dead Code – Remove unused or unnecessary code to keep things tidy.
🔬 Unit Test Boundaries – Ensure each unit is well-tested and behaves as expected.
👍 Use Positive Conditionals – Write conditions that are easy to understand and avoid negatives.
📚 Adhere to Standard Guidelines – Follow industry conventions and best practices.
🔠 Consistent Naming – Use meaningful and consistent names for variables, methods, etc.
⚖️ Avoid Complexity – Keep things simple and easy to understand.
🚨 Use Exceptions Instead of Return Codes – Rely on exceptions for handling errors rather than return codes.
✂️ Keep Methods Small – Each method should do one thing and do it well.
👮 Apply the Boy Scout Rule – Always leave the code cleaner than you found it.
These principles will help you write clean, maintainable code! 💻💡
»»»»For More ««««
Telegraph
Top 10 Clean Code Rules
According to “Clean code” book by Uncle Bob, he defined some guidances and rules that developers should follow. This is more imperative for the less experienced developers. With more experience, comes the possibility of breaking some rules or reinventing…
#መልካም_የፆም_ጊዜ
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);
😁6👍2
Ramadan Mubarak🥳🥳🎉🎉
የ1446 ዓ.ሂ የረመዳን ወር ጨረቃ በመታየቷ፤ ነገ ቅዳሜ የካቲት 22/2017 የወሩ የመጀመሪያ ቀን እንደሚሆን ታውቋል፡፡ 🌙✨
Wishing you a wonderful Ramadan!
❤2
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
23%
false true
10%
true false
50%
true true
13%
false false
4%
error
❤1
🔥 Lynx: A React Native Killer? 🔥
🕐 1 min read time
read_more
ByteDance just dropped Lynx, a Rust-powered, multi-platform framework that could shake up mobile dev. It ditches React Native’s JavaScript bridge bottlenecks for a dual-threaded UI engine, promising faster load times, smoother UI, and true CSS support.
✅ Pros: Blazing fast, framework-agnostic (React, Vue, Svelte), real CSS, Rust-powered.
❌ Cons: New & unpolished, small ecosystem, Windows issues.
Lynx looks promising but isn’t quite there yet. Will it replace React Native? Maybe. Are you trying it? 🚀
read_more
Telegraph
🔥 Lynx: The React Native Killer from TikTok? 🔥
Lynx is a Rust-powered, dual-threaded UI rendering framework that promises: ✅ Faster app launch times ⏩ ✅ Smooth, pixel-perfect UI 🖼️ ✅ True native performance ⚡ ✅ Full support for web developers 🌍
This media is not supported in your browser
VIEW IN TELEGRAM
Been off lately… had to train my finger to hit Tab professionally 🏋️♂️⌨️
#coding_meme@forcoder #codingmeme
#coding_meme@forcoder #codingmeme
for-coder
What is the output of the above code
Hint:
I'll talk about it later
👍1