Self Taught Developers
410 subscribers
329 photos
16 videos
11 files
112 links
Self Taught Dev | Orthodox โœ๏ธ | GC ๐Ÿ‘จโ€๐ŸŽ“

Blog: https://medium.com/@umeramasresha
IG :- @thug_life_um
Tiktok :- @life_of_gc
TG :- @TechnerdGuy

https://github.com/umera27
Download Telegram
Forwarded from Jah-red
When u use + operator with a string and a number JavaScript converts the number to a string and concatenates them...
โค2๐Ÿ‘1
Forwarded from Dagmawi Babi
The episode we've been waiting for is out. ๐Ÿฅณ

Andreas Kling โ€” Early Life, Beliefs, Addiction, Open Source, SerenityOS, Ladybird Browser
โ€ข youtube.com/watch?v=Gfly3j5qWpM

Enjoy! โค๏ธ

#MyYouTube #Podcasts
@Dagmawi_Babi
Please open Telegram to view this post
VIEW IN TELEGRAM
โค1๐Ÿ”ฅ1
JS Quiz

Guess ๐Ÿค”output of this snippets code๐Ÿ’ป?๐Ÿค“

Console.log(1+ +"3"+"2"+2);

Console.log("1"+ +"3"+"2"+ +2);

๐Ÿ™‹Drop ur ๐Ÿค“answer with explanation in the comment section๐Ÿ“จ๐Ÿ“จ๐Ÿ“จ๐Ÿ‘‡
The difference between loose equality (==) and strict equality (===)?


๐Ÿค“loose equality(:- used to check value equality.

(:-=checks for value equality with coercion allowed.

๐Ÿค“Strictly equality (:- used to check value and type equality.

(:-checks for value equality with out allowing coercion.

For example
Var a="12";
Var b=12;


a==b


//true they are equal in value.

a===b
//false they are equal in value not in type.

//a is string
//b is number.
โค1
Self Taught Developers
Photo
Hey fellows, how are you doing?

I know I've missed a lot of days without showing you my frontend dev progress. The reason is that I had some issues (class stuff) and I stopped working on it for a few days.

#DevCommunity
#FrontEndDev
#WebDevChallenge

@SelfTaughtDev1
10 awesome frontend development YouTube channels:

1. Traversy Media ๐Ÿš€
2. The Net Ninja ๐Ÿฅท
3. Dev Ed ๐ŸŽจ
4. Academind ๐Ÿ“š
5. Fireship ๐Ÿ”ฅ
6. Codevolution ๐Ÿ’ป
7. DesignCourse ๐ŸŽจ
8. Florin Pop ๐Ÿง‘โ€๐Ÿ’ป
9. Web Dev Simplified ๐ŸŒ
10. Kevin Powell ๐ŸŽฅ

@SelfTaughtDev1
๐Ÿ‘1
Forwarded from Java Programming
What is the output of the below Java code?
Anonymous Quiz
58%
Hello World
26%
World
8%
Run time error
8%
Compilation error
Forwarded from Java Programming
public class Solution {

public static void main(String args[]) {

int x = 6; int y = 5;

if(++y == x--) { System.out.println("Hello World"); }

else { System.out.println("World"); }
}
}
Forwarded from SeeFun.Dev (Sifen.Dev)
Stages of my coding journey so far: HTML ๐Ÿ˜Ž โ†’ CSS ๐Ÿ’ช โ†’ JavaScript ๐Ÿ˜ญ
Relatable, anyone? ๐Ÿ˜‚
๐Ÿ˜3
JavaScript fetch api