Filter
Exclude
Time range
-
Near
iLoveJavaScript redd.it/1kcvwi7
23
27
442
26,421
8
12
210
25,020
JavaScript go blow my head 🥲 In summary var iLoveJavascript = True If (iLoveJavascript) { document.write("I love JavaScript") } else { document.write("I hate JavaScript") }
2
27
Replying to @maybeshalinii
Great post here Shalini👍💯 On a related note, just wanna mention, that we should be careful about TDZ. 🚫 **Temporal Dead Zone (TDZ) and Error Behaviors**:🚫 So TDZ is about the basic differences among `var`, `let`, and `const` when it comes to hoisting. 👉 **Hoisting** is a JavaScript mechanism where variable and function declarations are moved to the top of their containing scope during the compilation phase. However, only the declarations are hoisted, not the initializations. When we say "`var` variables are hoisted", it means: If you declare a variable with `var` anywhere in a function or globally, its declaration is "lifted" to the top of the function or global scope. However, the actual value assignment remains in place. If you access the variable before its value assignment, it will return `undefined`. -------- NOT `var` variables are hoisted and initialized with `undefined`, while `let` and `const` are hoisted but not initialized. This uninitialized state is what's often referred to as the Temporal Dead Zone (TDZ). However, a lesser-known detail is how they each behave in terms of errors when accessed during their respective TDZs: 1. For `var`: - Since it's initialized with `undefined`, accessing a `var` variable before its declaration will not throw an error; instead, it will return `undefined`. 2. For `let`: - If you try to access a `let` variable before its declaration, JavaScript will throw a `ReferenceError` because it's in the TDZ and not yet initialized. 3. For `const`: - It behaves similarly to `let` in terms of the TDZ. Accessing a `const` before its declaration will throw a `ReferenceError`. However, there's another edge case to consider: If you declare a `const` variable but do not immediately initialize it, you'll receive a `SyntaxError`. This enforces the idea that constants must be initialized at the time of their declaration. Now, while many seasoned developers might be aware of the TDZ for `let` and `const`, the nuance of the different error types – `ReferenceError` vs. `SyntaxError` – for uninitiated `const` variables might catch some off guard. --------------------------- 🚀If you are preparing for JavaScript / React Interview - Check out my Github Repo (⭐It's got 2.7K Stars⭐🌠) - Will give you enough win🚀🔥 👉👉 github.com/rohan-paul/Awesom… #javascript #javascriptdeveloper #javascripts #javascript30 #learnjavascript #javascriptdevelopers #javascriptengineer #javascriptlover #javascripttutorial #javascripting #javascriptdev #javascriptlearning #javascriptframework #learningjavascript #javascript_love #vanillajavascript #javascriptislife #javascriptbasics #javascriptiskillingmysoul #javascriptbook #eloquentjavascript #javascriptlibraries #fullstackjavascript #javascriptcode #javascriptprogrammer #javascriptlovers #javascriptbootcamp #javascripters #javascriptcafe #javascriptforbabies #javascripttips #instajavascript #javascriptla #ilovejavascript #javascriptprogramming #javascript3 #javascriptjustice #javascriptninja #javascriptcoder #html #css
3
541
11 Jan 2022
Replying to @codewithmercy
I was trying to hire a dev for a web app idea thing. After the 3rd one let me down ( 1 year wasted) I said “**** it, im gonna learn to do it myself!” So I did. Best thing I ever did ✊ #ilovejavascript
1
4
This just BLOWS my mind... @ChrisDeLeon from @HomeTeamGameDev is a robot 🤯🤯 making a 🐍 game in less then 5 min 🤪 #respect #ilovejavascript thx for sharing @sam_bogaert youtu.be/xGmXxpIj6vs

2
6
12 Apr 2020
Programming. Somedays you are bashing your head, debugging, debugging getting frustrated - and wondering what you are doing with your life. Other days it gives you the greatest feeling ever. Haha. We continue to push. #ilovejavascript
1
3
Replying to @The_Warman
😬 he is definitely lazy to learn or not real developer for sure 😆 he didn't know that as server-side language, js has interesting framework ; angular, react, vue.js node.js which lightweight, interpreted, object oriented language. beside 95% website used js 😆 #ILoveJavaScript
1
‘BANANA’ with JavaScript by @MahdhiRezvi link.medium.com/2IizsaYyc2 What are your personal WTF moments of JavaScript? Feel free to comment :D #javascript #js #weirdjavascript #ilovejavascript #programming #happycoding

1
And i decided to upgrade my JavaScript course... Interesting as always #ilovejavascript Thank you @SoloLearn Choice .E. Osobor's JavaScript Tutorial Profile sololearn.com/profile/908625… @_100DaysOfCode @ReactJSgirls @js_tut @JavaScript @girlswhocode @freeCodeCamp @Codecademy
6
Life is like #JavaScript, single threaded. You keep doing your work and handle all external events, the events that are not in your control asynchronously with an error handling mechanism. You don't let external APIs block your mind. #ilovejavascript. @JavaScript 😀😀
1
2
R2D48 - Missed out on regular updates but have been revising #JavaScript at Treehouse #iLoveJavaScript #100DaysOfCode
6
3
It's so good to be always a #CodeNewbie and keep learning and asking others for help without any ego. And finding people like @kentcdodds @mpjme @EmmaWedekind helping others. :) #learning #ilovejavascript #JUNIORDEVELOPERFORLIFE
5
What are the five most important concepts every serious javascript developer should know? #ilovejavascript @JavaScript @JavaScriptKicks
2
Build a #Dropwizard based #Java application as a #JAR file and deploy it to a scalable microservice workload in the cloud with the help of this step-by-step guide jelastic.com/blog/dropwizard… @javacodegeeks @javaee_guardian @IloveJavaScript
1
2
Build a #Dropwizard based #Java application as a #JAR file and deploy it to a scalable microservice workload in the cloud with the help of this step-by-step guide jelastic.com/blog/dropwizard… @javacodegeeks @javaee_guardian @IloveJavaScript

2
2
These are the best JavaScript Books which are currently on my list. 1. YDKJS Series 2. Eloquent JavaScript 3. Exploring ES6 4. JavaScript Allonge Anybody got any other books they love. #ilovejavascript #javascript @JavaScript
4