Forwarded from á¨á /á /áł/á´/አáᢠááŁá¤ (Surafel Fasil)
Please open Telegram to view this post
VIEW IN TELEGRAM
for-coder
Kesgdet behuala đ§đââď¸ Back to coding đ¨âđť
How was sigdet tho
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
Sauce after the Sigdet
Anonymous Poll
36%
10
11%
undefined
32%
20
7%
syntax error
14%
reffernce error
đˇ áááľáśáľ á°ááĽá áĽááłá âď¸
á áá˘á ááá ááĽááŁá
đˇ á á°áŽ áá°ááŁá
á ááá áá áłá
đˇ á°áá
áĽááááá°
đˇ áŽá â¨
ááľá áá°áá â¤ď¸âđĽâď¸
Melkam Ye Fasika Beal Yihunlachu
Have a blessed holiday đâ¨
á áá˘á ááá ááĽááŁá
đˇ á á°áŽ áá°ááŁá
á ááá áá áłá
đˇ á°áá
áĽááááá°
đˇ áŽá â¨
ááľá áá°áá â¤ď¸âđĽâď¸
Melkam Ye Fasika Beal Yihunlachu
Have a blessed holiday đâ¨
Had a problem at home, turned it into a project â check it out below!
BTW anybody who knows where or sales RJ45 Ethernet cables let me know @firaflash
This media is not supported in your browser
VIEW IN TELEGRAM
Types of programmer.....
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));