What is the output of the above code ?
Sauce after the Sigdet
Sauce after the Sigdet
Anonymous Poll
33%
10
11%
undefined
33%
20
7%
syntax error
15%
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));
What is the output of the above code?
Anonymous Quiz
19%
A) 8, 5, 3, 1
35%
B) 1, 3, 5, 8
35%
C) 5, 3, 8, 1
12%
D) Throws an exception
This media is not supported in your browser
VIEW IN TELEGRAM
Happens all the time ๐ซฅ๐ตโ๐ซ
let a = [1, 2, 3];
a[10] = 99;
console.log(a.length);
console.log(a.hasOwnProperty(5));
console.log(Object.keys(a));
What is the output of the above code
Anonymous Quiz
26%
11 false ["0", "1", "2", "10"]
47%
Index Out Of Bound error
16%
11 true ["0", "1", "2", "5", "10"]
5%
10 false ["0", "1", "2"]
5%
11 false ["0", "1", "2", "5", "10"]