#learnjs search results
Just leveled up my JavaScript skills! 🚀 Thanks to @rohit_negi9 Bhaiya 🙏 ✅ Objects & CRUD ✅ Methods & this ✅ Looping & structuredClone() ✅ Destructuring & Symbols #JavaScript #LearnJS #WebDev #JavaScript #WebDevelopment #coderarmy #DevLife
Live user feedback, testing the username value against my RegEx pattern. #javascript #learnjs #learnjavascript #learningjavascript
Day 3 of JS grind 💻 Finally cracked the mystery of === vs == (my brain is healing) Danced with if, else, and that snobby ternary operator 😌 Then entered detective mode with &&, ||, and ! — logic unlocked 🧠 JavaScript’s wild, but I’m riding the wave 🌊 #LearnJS
Difference between Slice and Splice. See This👇 1) Slice - Creates a new array from the original array without modifying the original one 2)Splice - Modifies original array by removing, adding, or replacing elements and returns the removed elements #javascript #js #learnjs
📚 JS Masterclass - Part 2 🎓 "let," "var," and "const" in JS! 🔍 🔹 "let" - block-scoped, reassignable vars. 🔹 "var" - hoisted, function/globally scoped vars. 🔹 "const" - block-scoped constants, immutability. Join the journey! 🚀 #js #javascript #learnjs #100DaysOfCode
🚀 Day 14: Prototypes in JavaScript 1️⃣ Prototype: Enables object inheritance. 2️⃣ Prototype Chain: Shares properties/methods across objects. 📝 Key Methods: Object.create(), Object.getPrototypeOf(), hasOwnProperty(). 🌟 Inheritance: Extend object behavior efficiently. #LearnJS
Single VS Multiple Arguments in Javascript #learnjs #javascript #functions #objects #parameters #objects #bettercode #jscode #programming #learnjavascript #100DaysOfCode #hsk11 In Multiple Arguments, you have to remember the Order/sequence, unlike single object argument.
🚀 Day 13: Promises in JavaScript 📚 Topics: 1️⃣ Promise: It handles asynchronous operation outcomes. 2️⃣ States of a Promise: Pending, Fulfilled, Rejected 📝 Key Promise Methods: then(), catch(), finally() 🌟 Alternate Approach with async/await. #LearnJS #LearnInPublic
Single VS Multiple Arguments in Javascript In Multiple Arguments, you have to remember the Order/sequence, unlike single object argument. #learnjs #javascript #functions #objects #parameters #objects #bettercode #jscode #programming #learnjavascript #100DaysOfCode #hsk11
DOM JavaScript explained | #js #LearnJS youtu.be/wBSbfK5O1ec
I’ve built 400+ JS projects over the years — from small utilities to real-world apps. I’m cleaning them up to release as a free public repo for everyone to learn from. If you’re into JavaScript, stay tuned — this will be massive. #LearnJS #TechTips #letsconnect #buildinpublic
🚀 Day 2 of the #30DayChallenge: Advance JS Functions! 💡Functions: Objects with properties like name & length. 📦Hoisting: Call functions before declaration. 🌀Debounce: Delay execution until no calls for a set time (e.g., 1s pause while typing). #LearnJS #LearnInPublic #devs
🚀 Day 16: Private and Protected in JavaScript 📚 Topics: 1️⃣ Private Properties/Methods: Defined using #, accessible only inside the class. 2️⃣ Protected-like: Simulated with closures or naming conventions, not natively supported. #LearnJS #30DaysOfCode #LearnInPublic
🚀Day1 #JavaScript Interview Question Q: What are closures? A: Closures are where an inner function has access to the outer function’s variables & allows a function to access variables from an enclosing scope, even after the outer function has finished executing. #LearnJS #JS
Day 8 of #LearnJSWithMe No need for long if-else chains. Use short-circuiting : const name = user.name || 'Guest'; const isActive = user.loggedIn && 'Online'; || gives fallback defaults, && checks before acting. #LearnJS #LearnJavascript #JSbytes #JSTips #TechTips
"Unlock your coding potential! 🚀 Master JavaScript in just 14 days with our step-by-step guide. Ready to level up? #LearnJS #CodingJourney #14DaysChallenge" Follow us 👉 @qubycles #qubycles #iamindustryready #BeJobReady #javascript #css #coding #java #python #developer
The best way to understand programming is to relate it to everyday situations. Even cooking beans can teach you JS! 🍛 @AmosPikins #JavaScript #LearnJS #CodingJourney #100DaysOfCode #WebDev
Day 15 of #LearnJSWithMe Shallow vs Deep Copy = copies reference ❌ Spread copies shallow ✅ structuredClone() copies deep ✅ const copy = structuredClone(obj); Know what you’re copying, or bugs will copy you 😅 #JSbytes #LearnJS #TechTips
Day 12 of #LearnJSWithMe Closures = a function remembers its parent scope, even after the parent is gone. function outer() { let count = 0; return () => count++; } This is how private variables & memoization work in JS. #JSbytes #LearnJS #letsconnect #TechTips #TechPeople
I’ve built 400+ JS projects over the years — from small utilities to real-world apps. I’m cleaning them up to release as a free public repo for everyone to learn from. If you’re into JavaScript, stay tuned — this will be massive. #LearnJS #TechTips #letsconnect #buildinpublic
Day 12 of #LearnJSWithMe Closures = a function remembers its parent scope, even after the parent is gone. function outer() { let count = 0; return () => count++; } This is how private variables & memoization work in JS. #JSbytes #LearnJS #JSTips #TechTips #TechNews #TechJobs
Day 9 of #LearnJSWithMe Stop breaking your app with undefined errors! console.log(user?.profile?.email) If any property doesn’t exist, JS returns undefined - not a crash 💥 One of the most underrated ES features! #JSbytes #LearnJS #Javascript #JSTips #LearnJavascript
Day 8 of #LearnJSWithMe No need for long if-else chains. Use short-circuiting : const name = user.name || 'Guest'; const isActive = user.loggedIn && 'Online'; || gives fallback defaults, && checks before acting. #LearnJS #LearnJavascript #JSbytes #JSTips #TechTips
Day 6 of #LearnJSWithMe The spread operator (...) makes copying & merging arrays/objects effortless. const nums = [1, 2, 3]; const copy = [...nums, 4, 5]; console.log(copy); // [1, 2, 3, 4, 5] Cleaner than concat() - and super handy for immutability! #LearnJS #JSbytes #JStips
Just leveled up my JavaScript skills! 🚀 Thanks to @rohit_negi9 Bhaiya 🙏 ✅ Objects & CRUD ✅ Methods & this ✅ Looping & structuredClone() ✅ Destructuring & Symbols #JavaScript #LearnJS #WebDev #JavaScript #WebDevelopment #coderarmy #DevLife
Just leveled up my JavaScript skills! 🚀 Thanks to @rohit_negi9 Bhaiya 🙏 ✅ Objects & CRUD ✅ Methods & this ✅ Looping & structuredClone() ✅ Destructuring & Symbols #JavaScript #LearnJS #WebDev #JavaScript #WebDevelopment #coderarmy #DevLife
🎉 Whether you're debugging or deploying, remember that JavaScript is all about community and collaboration. Check out resources like MDN or Stack Overflow to grow your skills and connect with other devs! #DevCommunity #LearnJS
📚 JS Masterclass - Part 2 🎓 "let," "var," and "const" in JS! 🔍 🔹 "let" - block-scoped, reassignable vars. 🔹 "var" - hoisted, function/globally scoped vars. 🔹 "const" - block-scoped constants, immutability. Join the journey! 🚀 #js #javascript #learnjs #100DaysOfCode
Difference between Slice and Splice. See This👇 1) Slice - Creates a new array from the original array without modifying the original one 2)Splice - Modifies original array by removing, adding, or replacing elements and returns the removed elements #javascript #js #learnjs
Day 3 of JS grind 💻 Finally cracked the mystery of === vs == (my brain is healing) Danced with if, else, and that snobby ternary operator 😌 Then entered detective mode with &&, ||, and ! — logic unlocked 🧠 JavaScript’s wild, but I’m riding the wave 🌊 #LearnJS
Single VS Multiple Arguments in Javascript In Multiple Arguments, you have to remember the Order/sequence, unlike single object argument. #learnjs #javascript #functions #objects #parameters #objects #bettercode #jscode #programming #learnjavascript #100DaysOfCode #hsk11
🚀 Day 13: Promises in JavaScript 📚 Topics: 1️⃣ Promise: It handles asynchronous operation outcomes. 2️⃣ States of a Promise: Pending, Fulfilled, Rejected 📝 Key Promise Methods: then(), catch(), finally() 🌟 Alternate Approach with async/await. #LearnJS #LearnInPublic
Single VS Multiple Arguments in Javascript #learnjs #javascript #functions #objects #parameters #objects #bettercode #jscode #programming #learnjavascript #100DaysOfCode #hsk11 In Multiple Arguments, you have to remember the Order/sequence, unlike single object argument.
loops are great they help you in iterating your code till a certain conditions are met it gets stuffs done faster #learnjs #newbie #techie
🚀 Day 14: Prototypes in JavaScript 1️⃣ Prototype: Enables object inheritance. 2️⃣ Prototype Chain: Shares properties/methods across objects. 📝 Key Methods: Object.create(), Object.getPrototypeOf(), hasOwnProperty(). 🌟 Inheritance: Extend object behavior efficiently. #LearnJS
🚀 Day 2 of the #30DayChallenge: Advance JS Functions! 💡Functions: Objects with properties like name & length. 📦Hoisting: Call functions before declaration. 🌀Debounce: Delay execution until no calls for a set time (e.g., 1s pause while typing). #LearnJS #LearnInPublic #devs
🚀 Day 16: Private and Protected in JavaScript 📚 Topics: 1️⃣ Private Properties/Methods: Defined using #, accessible only inside the class. 2️⃣ Protected-like: Simulated with closures or naming conventions, not natively supported. #LearnJS #30DaysOfCode #LearnInPublic
🚀Day1 #JavaScript Interview Question Q: What are closures? A: Closures are where an inner function has access to the outer function’s variables & allows a function to access variables from an enclosing scope, even after the outer function has finished executing. #LearnJS #JS
"Unlock your coding potential! 🚀 Master JavaScript in just 14 days with our step-by-step guide. Ready to level up? #LearnJS #CodingJourney #14DaysChallenge" Follow us 👉 @qubycles #qubycles #iamindustryready #BeJobReady #javascript #css #coding #java #python #developer
JS Number Tools you need to know 🔍 ✅ parseInt() → get integers ✅ parseFloat() → get decimals ✅ Number() → full value to number ✅ isNaN() → check invalid numbers ✅ typeof → check value type 🧠 These tiny tools save hours of debugging. #JavaScript #JSBasics #LearnJS
Explored the Global Object (window, global, globalThis) and the this keyword in #javascript GitHub Repo: github.com/gptshubham/NEX… #WebDev #LearnJS #LearnInPublic #100DaysOfCode #FrontEnd #WebDevelopment #LearningbyDoing
🚀 Day 15: Static Properties & Methods in JS 📚 Topics: 1️⃣ Static Properties: Defined on the class itself, accessed with ClassName.property. 2️⃣ Static Methods: Declared with static, called directly on the class, not instances. Ideal for utilities. #LearnJS #30DaysOfCode
Something went wrong.
Something went wrong.
United States Trends
- 1. Trench 6,428 posts
- 2. Godzilla 21.5K posts
- 3. Richardson 2,992 posts
- 4. Tosin 13.1K posts
- 5. Hato 23.9K posts
- 6. Jacob Frey 15.9K posts
- 7. Hefner 1,040 posts
- 8. Ferran 10.6K posts
- 9. Lina Khan 5,372 posts
- 10. Qarabag 46.1K posts
- 11. Minneapolis 51K posts
- 12. Foden 8,331 posts
- 13. Stearns N/A
- 14. SCOTUS 29K posts
- 15. Jared Golden N/A
- 16. Walker Kessler 1,736 posts
- 17. Kranny N/A
- 18. Shabbat 1,512 posts
- 19. NYPD 34.6K posts
- 20. #FINEST2025 N/A