#javascriptchallenge 검색 결과
Day 23 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned IIFE (Immediately Invoked Function Expression) • Executes immediately after creation • Avoids global scope pollution • Can be named or anonymous • Pass params → ((name)=>{})(‘Nausheen’) • Always end with ;
Completed Day 11 of #JavaScriptChallenge by @ChaiCodeHQ & @Hiteshdotcom learned about Numbers & Math in JS! 💻 From .toFixed(), .toPrecision(), .toLocaleString() to Math.abs(), .round(), .floor(), and the powerful Math.random() 🎯 #ChaiAurCode #MasterjiChallenge
Day 17 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned object destructuring + JSON basics and used a JSON formatter to read API data clearly. Clean code feels good #ChaiAurCode #MasterjiChallenge #JavaScript
Day 24 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom • Learned about Execution Context & Call Stack • JS starts with Global Execution Context • Each function creates its own context • Two phases: Memory & Execution • Managed by Call Stack (LIFO)
🎩✨ Can you guess the Magic Number? 🧙♂️ Try to find it by adding, subtracting, and multiplying numbers 1 to 10. You have 3 tries! 🧐 Reply with your guesses, and let's see who can crack the code! #MagicNumberChallenge #JavaScriptChallenge 💫
Day 21 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Scope & Hoisting in JS 🔹 Inner → can access outer vars 🔹 Outer → can’t access inner vars 🔹 Function declarations → hoisted 🔹 Function expressions / arrow → not hoisted Know your scopes to avoid tricky bugs!
Day 9 of #JavaScriptChallenge by @ChaiCodeHQ & @Hiteshdotcom learned Stack vs Heap memory in JavaScript! All primitive data types are stored in the stack (copied by value), while non-primitive (reference) types are stored in the heap (copied by reference). #MasterjiChallenge
🚀 Exciting news! 🚀 Embark on a transformative journey with me as I kick off the 47 Days JavaScript Challenge! 🌟 Dive into 47 essential JS topics, from foundational concepts to advanced techniques. #JavaScriptChallenge #47DaysOfCode #JS #javascript #JSchallenge #Challenge
Day 25 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned control flow with if-else & switch - Explored truthy & falsy values - Checked empty arrays & objects - Understood Nullish Coalescing(??) - Used Ternary Operator for quick conditions #MasterjiChallenge #JavaScript
Day 13 ☕ #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom learned Arrays in JS! 📚 Explored push, pop, shift, unshift, slice vs splice, and deep vs shallow copy 🔥 #ChaiAurCode #MasterjiChallenge
Python Programming, Artificial Intelligence For Beginners #javascriptchallenge #pythondevelopment #javascriptcoding #AItools #pythonlearning #html #Python #pythonprogramming #java #pythondeveloper
🚀 #JavaScriptChallenge Day 3 🚀 Today's challenge: Let's dive into the fascinating world of math calculations in JavaScript, where strange things can happen! Comment down 👇🏻 if you know some other cool Math calculation results and share your findings ✅
🚀 #JavaScriptChallenge Day 4 🚀 Today, let's explore a fascinating concept: Decorators and Higher-Order Components (HOCs) in JavaScript. Let's delve deeper into this exciting aspect of JavaScript together! Follow the thread to unravel the secrets of decorators and HOCs. 👇🏻👇🏻
Day 10 of #JavaScriptChallenge by @ChaiCodeHQ ☕ 💻 & @Hiteshdotcom Explored Strings in JS! From backticks & interpolation to methods like trim, slice, replace & split. #ChaiAurCode #MasterjiChallenge
🔐 Day 3: of #30daysofjavascript Created a random password generator using JavaScript! 💻🔢🔀 Enhanced security and leveled up coding skills! 🌟 #JavaScriptChallenge 🚀
Day 11 of #JavaScriptChallenge by @ChaiCodeHQ & @Hiteshdotcom learned about Numbers & Math in JS! 💻 From .toFixed(), .toPrecision(), .toLocaleString() to Math.abs(), .round(), .floor(), and the powerful Math.random() with range formula 🎯 #ChaiAurCode #MasterjiChallenge
🚀 #JavaScriptChallenge Day 3 🚀 Today, let's dive into the world of JavaScript data types! Did you know there are seven fundamental data types in JavaScript? ✅ #Tech ✅ #Technology ✅ #Coding ✅ #Programming ✅ #Software ✅ #WebDevelopment
Day 22 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom - this & Arrow Functions in JS -this depends on how a function is called - Arrow functions inherit this (lexical scope) - Node.js → this = {} | Browser → this = window - Explicit return → {} | Implicit return → no {}
🧠Can one click give you a new animal every time? I built a button that fetches random animals from the web! 🔹 Learned how to work with APIs 🔹 Filtered out videos like .mp4 🔹 Added a fun loader while image loads #JavaScript #javascriptchallenge #buildinpublic #100DaysofCode
#javascriptchallenge #javascripttutorial #javascriptdeveloper #JS #js #jsr #webdev #webdesigning #webdeveloper #webdevelopers #WebDevChallenge #jstutoring #jstutorials #jstutorial
Day 25 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned control flow with if-else & switch - Explored truthy & falsy values - Checked empty arrays & objects - Understood Nullish Coalescing(??) - Used Ternary Operator for quick conditions #MasterjiChallenge #JavaScript
Day 24 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom • Learned about Execution Context & Call Stack • JS starts with Global Execution Context • Each function creates its own context • Two phases: Memory & Execution • Managed by Call Stack (LIFO)
Day 23 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned IIFE (Immediately Invoked Function Expression) • Executes immediately after creation • Avoids global scope pollution • Can be named or anonymous • Pass params → ((name)=>{})(‘Nausheen’) • Always end with ;
Day 22 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom - this & Arrow Functions in JS -this depends on how a function is called - Arrow functions inherit this (lexical scope) - Node.js → this = {} | Browser → this = window - Explicit return → {} | Implicit return → no {}
Day 21 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Scope & Hoisting in JS 🔹 Inner → can access outer vars 🔹 Outer → can’t access inner vars 🔹 Function declarations → hoisted 🔹 Function expressions / arrow → not hoisted Know your scopes to avoid tricky bugs!
Day 18 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learnt how functions work declaring, calling, passing parameters, using default values like function loginUserMessage(username="sam"), returning values, and checking missing arguments with if(!username). #ChaiAurCode
Day 17 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned object destructuring + JSON basics and used a JSON formatter to read API data clearly. Clean code feels good #ChaiAurCode #MasterjiChallenge #JavaScript
Day 16 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned object merging using Object.assign(target, source), nested object access, Object.keys/values/entries & hasOwnProperty. Object handling feels much clearer now 💻🔥 #MasterJiChallenge
Day 15 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom learned Objects in depth in JavaScript 💻 object literals, dot vs bracket access, symbols, Object.freeze(), and functions with string interpolation 🔥 #ChaiAurCode #MasterJiChallenge
Day 14 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Array Part 2 💻 Learned concat, spread, flat(), and array utils like isArray(), from(), of() merging & flattening made easy! 🔥 #ChaiAurCode #MasterJiChallenge
Day 13 ☕ #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom learned Arrays in JS! 📚 Explored push, pop, shift, unshift, slice vs splice, and deep vs shallow copy 🔥 #ChaiAurCode #MasterjiChallenge
Day 12 of #JavaScriptChallenge by @ChaiCodeHQ & @Hiteshdotcom Explored Date & Time in JS ⏰ Learned new Date(), custom dates, timestamps with Date.now(), getMonth, getDay & toLocaleString() formatting 🔥 #ChaiAurCode
Completed Day 11 of #JavaScriptChallenge by @ChaiCodeHQ & @Hiteshdotcom learned about Numbers & Math in JS! 💻 From .toFixed(), .toPrecision(), .toLocaleString() to Math.abs(), .round(), .floor(), and the powerful Math.random() 🎯 #ChaiAurCode #MasterjiChallenge
Day 11 of #JavaScriptChallenge by @ChaiCodeHQ & @Hiteshdotcom learned about Numbers & Math in JS! 💻 From .toFixed(), .toPrecision(), .toLocaleString() to Math.abs(), .round(), .floor(), and the powerful Math.random() with range formula 🎯 #ChaiAurCode #MasterjiChallenge
Day 10 of #JavaScriptChallenge by @ChaiCodeHQ ☕ 💻 & @Hiteshdotcom Explored Strings in JS! From backticks & interpolation to methods like trim, slice, replace & split. #ChaiAurCode #MasterjiChallenge
Day 9 of #JavaScriptChallenge by @ChaiCodeHQ & @Hiteshdotcom learned Stack vs Heap memory in JavaScript! All primitive data types are stored in the stack (copied by value), while non-primitive (reference) types are stored in the heap (copied by reference). #MasterjiChallenge
The calculator is evolving from a basic tool to a fully-featured scientific calculator. It will be completely ready before the end of the 15-day challenge. I’ll keep sharing my progress daily - stay tuned 👀 #WebDevelopment #DevCommunity #JavaScriptChallenge
Stop struggling to center divs! Just use this simple 2-line CSS trick to center your divs, Simple right 😊 😊 Learn JavaScript while having fun step by step #javascript #javascriptchallenge #coding #technology
Only 10% of Developers Get This Right!" #JavaScriptChallenge #eventloop console.log('A'); setTimeout(()=>console.log('B')); Promise.resolve().then(()=> console.log('C')); process.nextTick(()=>console.log('D'); console.log('E');
Day 23 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned IIFE (Immediately Invoked Function Expression) • Executes immediately after creation • Avoids global scope pollution • Can be named or anonymous • Pass params → ((name)=>{})(‘Nausheen’) • Always end with ;
Day 26 of the #JavaScriptChallenge 🚀 Built a Chat App: Set up the project, WebSocket server, and connection. Added chat interface with message handling and user authentication. Enhanced UI with styles and animations. @hiteshdotcom! #learningInPublic #chaiAurCode
Completed Day 11 of #JavaScriptChallenge by @ChaiCodeHQ & @Hiteshdotcom learned about Numbers & Math in JS! 💻 From .toFixed(), .toPrecision(), .toLocaleString() to Math.abs(), .round(), .floor(), and the powerful Math.random() 🎯 #ChaiAurCode #MasterjiChallenge
Python Programming, Artificial Intelligence For Beginners #javascriptchallenge #pythondevelopment #javascriptcoding #AItools #pythonlearning #html #Python #pythonprogramming #java #pythondeveloper
Day 17 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned object destructuring + JSON basics and used a JSON formatter to read API data clearly. Clean code feels good #ChaiAurCode #MasterjiChallenge #JavaScript
Day 24 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom • Learned about Execution Context & Call Stack • JS starts with Global Execution Context • Each function creates its own context • Two phases: Memory & Execution • Managed by Call Stack (LIFO)
🚀 Exciting news! 🚀 Embark on a transformative journey with me as I kick off the 47 Days JavaScript Challenge! 🌟 Dive into 47 essential JS topics, from foundational concepts to advanced techniques. #JavaScriptChallenge #47DaysOfCode #JS #javascript #JSchallenge #Challenge
This is how I count sheep before bed... 💤🧑💻 #javascript #javascriptchallenge #countingsheep #codewars
"🚀 Excited to embark on a 30-day #JavaScriptChallenge with @0x_Ryker 📆 We'll be building awesome projects every day to level up our skills. Join us on this coding journey! 💻✨ #JavaScript #CodingChallenge #30DaysOfCode #WebDevelopment #LearningTogether" #100daysofcoding
Day 10 of #JavaScriptChallenge by @ChaiCodeHQ ☕ 💻 & @Hiteshdotcom Explored Strings in JS! From backticks & interpolation to methods like trim, slice, replace & split. #ChaiAurCode #MasterjiChallenge
🎩✨ Can you guess the Magic Number? 🧙♂️ Try to find it by adding, subtracting, and multiplying numbers 1 to 10. You have 3 tries! 🧐 Reply with your guesses, and let's see who can crack the code! #MagicNumberChallenge #JavaScriptChallenge 💫
Day 21 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Scope & Hoisting in JS 🔹 Inner → can access outer vars 🔹 Outer → can’t access inner vars 🔹 Function declarations → hoisted 🔹 Function expressions / arrow → not hoisted Know your scopes to avoid tricky bugs!
Day 2 of 30 Days of JavaScript #30DaysOfJavaScript #JavaScriptChallenge #CodeJourney #LearnToCode #WebDev #CodingCommunity #CodeNewbie #TechLearning #JavaScriptBeginner #DailyCoding #Programming #CodeGoals #JavaScriptProjects #CodeInspiration #CodingAdventure #CodeLearning #Dev
Solved 4 questions in flow flow ! 🫣✅ #javascript #javascriptchallenge #algo #webdevelopment #webdev #programming #array #arrays #loop #index #function
Day 9 of #JavaScriptChallenge by @ChaiCodeHQ & @Hiteshdotcom learned Stack vs Heap memory in JavaScript! All primitive data types are stored in the stack (copied by value), while non-primitive (reference) types are stored in the heap (copied by reference). #MasterjiChallenge
Day 25 of #JavaScriptChallenge by @ChaiCodeHQ @Hiteshdotcom Learned control flow with if-else & switch - Explored truthy & falsy values - Checked empty arrays & objects - Understood Nullish Coalescing(??) - Used Ternary Operator for quick conditions #MasterjiChallenge #JavaScript
Something went wrong.
Something went wrong.
United States Trends
- 1. World Cup 235K posts
- 2. Paraguay 24K posts
- 3. The Jupiter 96.8K posts
- 4. Brazil 67.4K posts
- 5. Croatia 19.6K posts
- 6. Argentina 199K posts
- 7. Portugal 86.7K posts
- 8. FINALLY DID IT 426K posts
- 9. #USMNT 1,274 posts
- 10. Matt Campbell 10.1K posts
- 11. Group L 13.9K posts
- 12. Infantino 61.5K posts
- 13. Ghana 70.5K posts
- 14. Norway 28.9K posts
- 15. Senegal 41.4K posts
- 16. Iowa State 8,525 posts
- 17. Warner Bros 220K posts
- 18. Wayne Gretzky 3,698 posts
- 19. #Mundial2026 33K posts
- 20. Hep B 13.4K posts