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
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? ๐
Relatable, anyone? ๐
๐3
Forwarded from Web Development - HTML, CSS & JavaScript
JavaScript fetch api