Filter
Exclude
Time range
-
Near
Day 8 & 9 of #100DaysOfCode Finished my course on tailwind css. Started building a project on it. Spent the day looking for design inspirations everywhere. Also completed 2 chapters in eloquentjavascript. And Started the robot project.
1
8
166
Replying to @DevKhan03
eloquentjavascript looks great.
1
1
42
Replying to @catalinmpit
writing the for loop, while loop from ground up these exercises were there in eloquentjavascript
1
4
1,088
I recently came across this JS book called "eloquentjavascript" Written by Marijn Haverbeke. A beginner can read this book if they find hard learning JS. eloquentjavascript.net/ #Javascript #learning #100DaysOfCode #webdeveloper #100daysofcoding
2
34
Before my success with Javascript, I tried learning how to code countless times Since 2015, with different languages, failing each time. I could get things done but never really understand what I'm doing. No idea why DS or functions are what they are. Until during a career switch from art to programming in 2019 I randomly came across eloquentjavascript(.)net It's so beautiful I did it for 2 months and I never forget this book's name now in 2024. And I've done everything; tutorials, books, courses, bootcamps (never completed one tho) What's so different about this book? It makes JS dead simple. Just like the grug brained dev thing (you should read that too) Sometimes I wanna make a video about how this book made me magically learn how programming is constructed and how to think about it. I don't really know android dev or servers or difference between SSR and SPA (I barely understand the difference), but somehow when I need to do it I'll know. One more topic added to the neverending "make videos on this topic" list. Ugh.
2
11
896
Learn Javascript for free: 1. eloquentjavascript .net 2. jsforcats .com 3. javascript .info 4. learn javascript .online 5. learn-js .org/ 6. devdocs .io/javascript/ 7. egghead .io/q/javascript 8. freecodecamp .org
3
26
145
8,961
25 Dec 2023
JavaScript - eloquentJavaScript. net Linux - Linuxjourney. Com Data Science - dataquest. io Azure - Learn. microsoft. com Android coding - developer. android. com/courses Html - htmldog. com
1
2
26
2,637
Let's see how it goes 🧐 #eloquentjavascript #learning
2
54
🚀 Just wrapped up the Chapter 4 exercises in 'Eloquent JavaScript'! 📷 #EloquentJavaScript #CodingJourney #Programming #JS Link to solution below: github.com/Truthixify/eloque…
2
170
🚀 Just wrapped up the Chapter 2 exercises in 'Eloquent JavaScript'! 💡💻 Excited to share my solutions and insights. Learning and growing one exercise at a time! 💪 #EloquentJavaScript #CodingJourney #Programming #JS Link to solution below: github.com/Truthixify/eloque…
4
172
1. Eloquent JavaScript • Esse livro é muito bom em fornece muitos exemplos de como não usar JavaScript. • Endereço: eloquentjavascript .net
1
1
219
Learn JavaScript for FREE 1. eloquentjavascript ➩ eloquentjavascript.net 2. JavaScript Info ➩ javascript.info/ 3. JsForCats ➩ jsforcats.com 4. LearnJs ➩ learn-js.org/ 5. DevDocs ➩ devdocs.io/javascript/ 6. eggHead ➩ egghead.io/q/javascript 7. FreecodeCamp ➩ freecodecamp.org 8. Codeacademy ➩ codecademy.com/learn/introdu… 9. MDN Docs ➩ developer.mozilla.org/en-US/… 10. JavaScript tutorials ➩ javascripttutorial.net/
16
40
200
34,396
1. eloquentjavascript : A comprehensive online book that teaches JavaScript programming with a focus on problem-solving and programming concepts. 🔗 eloquentjavascript.net
1
2
10
540
Day4 of #100daysofcoding /#100daysofcode today's Learning: => Solved 2 questions of #eloquentjavascript book. =>Started with Functions.. a little low today #javascript #Coding #learnings
3
65
Learn Javascript for free: 1. eloquentjavascript .net 2. jsforcats .com 3. javascript .info 4. learn javascript .online 5. learn-js .org/ 6. devdocs .io/javascript/ 7. egghead .io/q/javascript 8. freecodecamp .org
10
24
127
13,488
1. eloquentjavascript : A comprehensive online book that teaches JavaScript programming with a focus on problem-solving and programming concepts. 🔗 eloquentjavascript.net
1
1
2
158
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