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
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)
False (=== for strict equality)
๐2
Js Quiz
console.log("9"+4);
console.log(4+"9");
What is the output of thisโ๏ธ snippets code?๐ป๐ค
console.log("9"+4);
console.log(4+"9");
What is the output of thisโ๏ธ snippets code?๐ป๐ค
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
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๐จ๐จ๐จ๐
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.
๐ค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
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. 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 Evangadi Tech
YouTube
The next steps for the scholarship applicants
Next Fullstack course will start on Dec 5th, 2024 - (Full Stack Application Development - MERN Stack)
------------------------------
แจแแแ แฎแญแถแฝ แ แตแแแฉ!
https://www.youtube.com/watch?v=7GLMhd-82uc
แจแแตแ แจแขแซแแแฒ แฐแแชแแฝ แจแฅแซ แแแ แแฐแแ แฅแแดแต แฐแแก? แ แฅแซ แแญแต แแ แแ แแธแ?
โฆ
------------------------------
แจแแแ แฎแญแถแฝ แ แตแแแฉ!
https://www.youtube.com/watch?v=7GLMhd-82uc
แจแแตแ แจแขแซแแแฒ แฐแแชแแฝ แจแฅแซ แแแ แแฐแแ แฅแแดแต แฐแแก? แ แฅแซ แแญแต แแ แแ แแธแ?
โฆ
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