Filter
Exclude
Time range
-
Near
Day 16 of my internship Special thanks to @akshaymarch7 πŸ™Œ His teaching style makes JavaScript crystal clear & super enjoyable! Topics that got perfectly cleared: - Async/Await magic - Throttling & Debouncing (nailed it!) - Promise chains - CORS Must-watch playlist: Namaste JavaScript. #JavaScript #NamasteJavaScript #AkshaySaini #WebDevelopment #Coding #LearnJavaScript #100xDevs
3
100
Day 15 of my internship πŸš€ Deep JS learning with @akshaymarch7 β€’ How JavaScript Engine actually works (not just theory) β€’ Higher-Order Functions β†’ cleaner & powerful code β€’ Async JS demystified (callbacks β†’ promises β†’ async/await) β€’ Polyfills β†’ writing JS from scratch, the right way β€’ bind, call, apply β†’ real control over this β€’ Currying β†’ functions with superpowers Not memorizing JS… understanding JS Reading docs Namaste JavaScript = solid fundamentals This is how you level up from learner β†’ engineer #JavaScript #NamasteJavaScript #AkshaySaini #WebDev #LearnInPublic #100DaysOfCode
3
60
πŸš€ Day 14 of my internship with @akshaymarch7 – Namaste JavaScript β€’ 🧠 Finally understanding how JavaScript runs under the hood β€’ βš™οΈ Execution Context β†’ crystal clear now β€’ πŸ”— Scope Chain & Lexical Environment = 🀯 β€’ ⬆️ Hoisting decoded (no more β€œmagic”) β€’ ❓ Most know WHAT JS does β€” Akshay explains HOW & WHY β€’ πŸ”₯ This is where average β†’ pro-level JS begins πŸ’Ž Namaste JavaScript = must-watch for serious devs πŸ‘‰ Starting it today? Drop a πŸ”₯ if you’re watching too! #JavaScript #NamasteJavaScript #AkshaySaini #WebDev #Frontend #LearnInPublic #100DaysOfCode πŸš€
3
45
25 Oct 2025
Been diving deep into JavaScript lately ⚑ Finished the first 7 episodes of #NamasteJavaScript β€” covered hoisting, scope chain, execution context, TDZ & more πŸ”₯ Also leveling up with #freeCodeCamp β€” hands-on theory = perfect combo πŸ’» #JavaScript #WebDev #100DaysOfCode
1
3
63
πŸ”΄ Day 86-87 #100daysofcode -Done with #NamasteJavascript now i can understand how javascript work under the hood. --Now getting basic knowledge of AWS. --Solved a #freecodecamp React Assignment. #WebDevelopment #BuildInPublic
4
75
πŸ”΄ Day 84 #100daysofcode --Learned some new Hooks today useReducer,useOptimistic. --And did deep dive in high order function callback hell map,reduce,filter to make my fundamentals more strong to learn whats going on under the hood. #WebDevelopment #NamasteJavascript
4
161
πŸ”΄ Day 83 #100daysofcode --Practiced React with making React Form from #freecodecamp assignment. --Did Deep dive in functions callback functions function declaration,statement etc. --And learned how closures work under the hood #WebDevelopment #BuildInPublic #NamasteJavascript
4
218
πŸ”΄ Day 81 - 82 #100daysofcode --Started #NamasteJavascript playlist to get deep understanding of JS. --Learned about working of JS its behaviour why its different then other Languages and some Concepts. --Practiced React from #freecodecamp. #WebDevelopment #BuildInPublic
1
8
74
🧠 Day 22 - Namaste JS (Ep 16-18) βœ… let & const vs var βœ… Template literals & default params βœ… Arrow functions βœ… Destructuring & spread/rest βœ… Closures, HOFs, Callbacks JS ES6 = cleaner & powerful coding! #NamasteJavaScript #100DaysOfCode #JS
2
107
πŸ”„ Day 20 – Namaste JavaScript Revision πŸ“š Episodes 9–12 reviewed! βœ… Deep dive into scope, closures & lexical environment βœ… Hoisting quirks revisited βœ… Mastered callback & event loop concepts 🧠 Revision = retention #NamasteJavaScript #JavaScript #100DaysOfCode #DevCommunity
2
48
🧠 Day 19 – Namaste JS (Ep 5–8) βœ… Hoisting: varβ†’undefined, let/constβ†’TDZ, funcs hoisted βœ… Funcs as values, scope chain decides access βœ… Empty JS β†’ GEC, global=window βœ… Undefined=declared no value, Not defined=never declared #NamasteJavaScript #JavaScript #100DaysOfCode
2
47
🧠 Day 18 - Namaste JS (Rev. Ep 1–5) βœ… JS Engine: Parses & runs code βœ… Heap & Stack: Memory execution βœ… Execution Context: Creation run phase βœ… Hoisting: Vars β†’ undefined, fns full βœ… Scope: Global, function, block #NamasteJavaScript #100DaysOfCode
4
94
🧠 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
3
42
🧠 Day 16 - Namaste JS (Ep 16) πŸ“Œ Arrow Functions in JavaScript βœ… Shorter syntax for function expressions βœ… No this, arguments, super, or new.target binding βœ… Lexical this β†’ Great for callbacks βœ… Can't be used as constructors #NamasteJavaScript #100DaysOfCode

2
18
🧠 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
3
18
πŸ“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
4
93
πŸ“… 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
2
306
🧠 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
2
21
πŸš€ 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
2
21