Explore tweets tagged as #NamasteJavaScript
@Royalrajputama6
Aman Kumar Singh
22 days
πŸ“… Day 1 - #NamasteJavaScript.Watched Ep 1–3 πŸŽ₯. πŸ’‘ Why JS matters.βš™οΈ Execution Context (Memory + Code phase).πŸš€ Hoisting: var = undefined, let/const = TDZ. Understanding JS engine = writing better code πŸ’».#100DaysOfCode #LearnInPublic
Tweet media one
0
0
3
@Royalrajputama6
Aman Kumar Singh
16 days
Day 6 βœ… | #NamasteJavaScript Ep8. Took a Sunday break , now continuing my streak!. 🧠 How JavaScript handles functions + variable memory.πŸ”„ Activation Object vs Execution Context.🧡 Code Execution Flow in JS. Every episode deepens my JS foundation!.#100DaysOfCode #LearnInPublic
Tweet media one
0
0
2
@Royalrajputama6
Aman Kumar Singh
6 days
🧠 Day 16 - Namaste JS (Ep 16).πŸ“Œ Arrow Functions in JavaScript. βœ… Shorter syntax for function expressions.βœ… No this, arguments, super, or binding.βœ… Lexical this β†’ Great for callbacks.βœ… Can't be used as constructors. #NamasteJavaScript #100DaysOfCode.
0
0
2
@Saarcasmicc
Saar Agrawal
1 month
Just revisited async JS with @akshaymarch7 β€œPromise APIs + Interview Questions” from #NamasteJavaScript β€” so crisp, clear & practical! .πŸš€ Never underestimate the power of relearning. Highly recommend for anyone brushing up their #JavaScript skills!.
0
1
2
@iamsandip9919
Sandy
1 month
This video was incredibly well-explained πŸ”₯ I've struggled with these topics before, but your video made them so easy to grasp. You're truly an amazing teacher. πŸ‘πŸ™ .Thank you so much @akshaymarch7 . #Javascript #JsPromise #namastejavascript.
0
1
2
@Royalrajputama6
Aman Kumar Singh
13 days
πŸ“… Day 9 of #NamasteJavaScript.Ep 10: Hoisting in JS. 🧠 Hoisting = memory allocated before execution. var β†’ undefined. let & const β†’ in TDZ. Functions declared are hoisted. Function expressions aren’t. JS is tricky, but now it clicks!.#100DaysOfCode #JavaScript.
0
0
2
@Saarcasmicc
Saar Agrawal
1 month
Just watched Ep 4 of #NamasteJavaScript S02 by @akshaymarch7 /await is pure elegance! .πŸš€ JavaScript’s way of handling async code is genius: no callback hell, just clean, readable flow. If you haven’t explored it deeply, you’re missing out! πŸ™ #JavaScript #AsyncAwait.
0
1
2
@Royalrajputama6
Aman Kumar Singh
14 days
🧠 Day 8 of #NamasteJavaScript.Today I finally understood Closures!. A closure is when a function remembers its lexical scope even after its parent is gone. πŸ” It captures variables from its outer scope and carries them like a backpack! πŸŽ’. This is JS magic ✨.#100DaysOfCode.
0
0
2
@Royalrajputama6
Aman Kumar Singh
11 days
πŸ“Day 11 – Ep12: Variable Shadowing in JS.When inner scope var overrides outer var with same name. let a = "outer";.{. let a = "inner";. console.log(a); // inner.}. β›” Illegal: let shadowed by var.βœ… Allowed: var shadowed by let. #NamasteJavaScript #JS.
0
0
4
@namastedev_
NamasteDev by Akshay Saini
6 months
The OG duo πŸ”₯πŸš€.#namastejavascript
0
0
7
@Royalrajputama6
Aman Kumar Singh
22 days
πŸš€ Starting my #NamasteJavaScript journey today!.I’ll be posting daily learnings, insights and mini code challenges here. Let's grow together πŸ’»πŸ”₯ .Follow for raw, honest notes as I explore the depths of JavaScript!.#LearnInPublic #100DaysOfCode.#JavaScript #NamasteJavaScript.
0
0
1
@Royalrajputama6
Aman Kumar Singh
20 days
πŸ“š Day 3 of #100DaysOfCode | #NamasteJavaScript Ep. 6.πŸ” Call Stack Deep Dive. ➑️ JS is single-threaded & synchronous.➑️ Call Stack = Manages function execution.➑️ LIFO (Last In First Out).➑️ Stack Overflow = Too many nested calls. 🎯 JS executes top of the stack. #LearnInPublic
Tweet media one
0
0
3
@itscrazylokesh
lokesh choudhary Programmer
2 months
πŸ“… πƒπšπ²-πŸπŸ”πŸŽ: π’π²π¬π­πžπ¦ π‘πžπ¬πžπ­ 𝐌𝐨𝐝𝐞 β€” 𝐎𝐧𝐞 πƒπšπ² πƒπžπ―, 𝐎𝐧𝐞 πƒπšπ² π’π²π¬π­πžπ¦ πƒπžπ¬π’π π§!. @rohit_negi9 . #Day160 #DSA #LeetCode #FindDuplicateFiles #NamasteJavaScript #JavaScriptInternals #SystemDesignPlanning #Consistency
Tweet media one
0
0
2
@Royalrajputama6
Aman Kumar Singh
15 days
πŸš€ Day 7 of #NamasteJavaScript.πŸ“Œ Ep 9: Short Circuiting in JS. βœ… || returns first truthy value.βœ… && returns first falsy value.βœ… Lazy evaluation β†’ skips unnecessary ops.βœ… Used for conditional logic & fallbacks. 🧠 Smart way to write cleaner code!.#100DaysOfCode #JavaScript.
0
0
3
@varshhhh002
Varshini
2 months
Time, Tide and Javascript wait for none.- Guess the author of this quoteπŸ˜…. #NamasteJavascript.
1
0
4
@Royalrajputama6
Aman Kumar Singh
5 days
🧠 Day 17 - Namaste JS (Ep 17).πŸ“Œ Higher Order Functions (HOFs). βœ… Functions that take other functions as arguments or return them.βœ… Enable:.πŸ”Ή Callback logic.πŸ”Ή Abstraction.πŸ”Ή Clean code. πŸ”₯ JS treats functions as first-class citizens. #NamasteJavaScript #Js #100DaysOfCode.
0
0
3
@Royalrajputama6
Aman Kumar Singh
7 days
🧠 Day 15 - Namaste JS Ep 15.πŸ“Œ First-Class Functions in JS. βœ… JS treats functions as first-class citizens.βœ… You can:.β€’ Pass as arguments.β€’ Return from functions.β€’ Assign to variables. πŸ”₯ That’s the power behind callbacks, closures & HOFs!. #NamasteJavaScript #100DaysOfCode.
0
0
3
@akshaymarch7
Akshay Saini
2 years
If the content is good, education can be fun. #NamasteJavaScript FTW πŸš€
Tweet media one
6
2
133
@cpsaw03
Chandrashekher
1 year
Day 72 of #100DaysOfCode πŸ’» . -Completed the last project (Simple Timer) from @traversymedia's course videos. -Revised basics of OOP from @kunalstwt's videos. -Started watching #NamasteJavaScript from @akshaymarch7's videos. #javascript #twitter #OPPS
Tweet media one
Tweet media two
Tweet media three
Tweet media four
0
0
14