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
Javascript for Everything:

JS + React = Web Development
JS + Three.js = 3D Visualization
JS + Angular = Web Applications

JS + Phaser = Game Development
JS + Vue.js = Progressive Web Apps
JS + TensorFlow.js = Machine Learning

JS + Node.js = Server-Side Development
JS + Electron = DesktopApp Development
JS + React Native = MobileApp Development

#javascript
Question


Console.log(null == undefined);

Console.log(null === undefined);


What is the output of this two snippets code?๐Ÿ’ป

Drop ur ๐Ÿค“answer with explanation ๐Ÿ“šin the comment section ๐Ÿ‘‡
Forwarded from Seraphim
True (== for loose equality, null and undefined are loosely equal)
False (=== for strict equality)
๐Ÿ‘2
Js Quiz

console.log("9"+4);
console.log(4+"9");

What is the output of thisโ˜๏ธ snippets code?๐Ÿ’ป๐Ÿค“
Forwarded from Jah-red
94,49
Explanation โ˜๏ธ๐Ÿ‘‡
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