for-coder
432 subscribers
102 photos
54 videos
23 files
138 links
@FORCODERR

@firaflash 👨‍💻
Download Telegram
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
Kesgdet behuala 🧎🏃‍♂️
Back to coding 👨‍💻
Good morning sewoch
function outer() {
let x = 10;
function inner() {
console.log(x);
}
x = 20;
return inner;
}

const fn = outer();
fn();
What is the output of the above code ?
Sauce after the Sigdet
Anonymous Poll
36%
10
11%
undefined
32%
20
7%
syntax error
14%
reffernce error
Please open Telegram to view this post
VIEW IN TELEGRAM
🏷 ክርስቶስ ተንሥአ እሙታን ✝️
  በዐቢይ ኃይል ወሥልጣን

🏷 አሰሮ ለሰይጣን
  አግዐዞ ለአዳም

🏷 ሰላም
  እምይዕዜሰ

🏷 ኮነ ✨
  ፍስሐ ወሰላም ❤️‍🔥✝️

Melkam Ye Fasika Beal Yihunlachu
Have a blessed holiday 🙏✨
Please open Telegram to view this post
VIEW IN TELEGRAM
Good evening ☕️
Had a problem at home, turned it into a project — check it out below!
Please open Telegram to view this post
VIEW IN TELEGRAM
BTW anybody who knows where or sales RJ45 Ethernet cables let me know @firaflash
for-coder
Types of programmer.....
Which kind are u
Anonymous Poll
19%
1
7%
2
19%
3
26%
4
7%
5
7%
6
7%
7
7%
8
ere mbrat hayl yesrachun ystachu😭
List<int> list = new List<int> { 5, 3, 8, 1 };
Dictionary<int, int> priority = new Dictionary<int, int>
{
{ 5, 1 },
{ 3, 2 },
{ 8, 3 },
{ 1, 4 }
};

list.Sort((a, b) => priority[a].CompareTo(priority[b]));
Console.WriteLine(string.Join(", ", list));