#30daysofjavascript ผลการค้นหา
Day1 of 30days of code!. 🎉 I got started with Typescript today, learnt some of it's major advantages to JS. I also got some hands on practice using the types!, and i can't wait to start building 👨🍳🔥. #buildinpublic #javascript #typescript #30daysofcode #nextjs #web3 #tech
Day 2 of 30days of code! 🎉 It felt very weird and tiring picking my laptop up on a Sunday but we move regardless. Installed typescript which was pretty confusing but I got it later on and practiced writing types!🔥 #30daysofcode #typescript #javascript #nextjs #webdev #web3
you hate javascript because you don't understand it. i hate javascript because I understand it. we are not the same.
💰 $30 GIVEAWAY 💰 ✅ Follow me & @tzbetz ✅ Retweet ✅ RT Quoted Post (show proof) ⏰ Giveaway ends in 72 hours!
Day 15 of #100DaysOfCode 🎯 Completed Javascript fundamentals part 1 🎉 ✔️ Will now move on to Arrays, Functions & Objects✨ Made a reference sheet of Javascript basics - 1 👇
Hurry up! Free for 24 hours. ✅ Python ✅ Node.js ✅ React.js ✅ JavaScript ✅ Oops in C++ ✅ HR interview ✅ Machine learning ✅ Cloud Computing ✅ Computer networks To Get it: 1. Follow me (so that i can DM you 2. Repost 3. Comment "handwritten"
#今日中に30いいね30RT30リプ来なかったら引退 もうこれで本当に最後 達成したらこれからも投稿するし達成しなかったらそれまで しつこくて申し訳ないけどこれが最後だからみんなの意見聞かせてほしい
Day 170 of #365DaysOfCode Web dev:Learned Common In-Built Object 1️⃣ Math:for calculation 2️⃣ Date:for time & date 3️⃣ String:text manipulation 4️⃣ Array:list handling 5️⃣ Object:store key-value pair DSA: Practiced While Loops in C++ Input:n Output:Pattern using logic (n - j+1)
"A gram of experience is worth as much as a ton of theory." Stop watching tutorials only! #30DaysOfCode
Day 35&36 📌Today's learnings: 🔹️JS single threaded and synchronous nature 🔹️Web APIs 🔹️Event loop- connects single-threaded JS with async Web APIs 🔹️Common Web APIs #100DaysOfCode #CodingJourney #JavaScript #WebDevelopment #buildinpublic #coderarmy
day 21-24 of #100daysofcode: -lc potd's -revised sliding window problems -mostly did dev(js practise) not feeling in the right headspace for the last few days
Hey guys, Day 22 of #30daysofJavaScript #javascript #webdevelopment #Frontend #CodingChallenge #CodingJourney
💻Day 17 of #100DaysOfCode Continued JavaScript (Part 2) from Sigma 3.0 🚀 Covered: • else if & else statements • Nested if-else • Logical operators • Practice questions for all #JavaScript #100DaysOfCode #WebDevelopment #CodingJourney
Days 343-344: - Trying to get my head around @mastra with @typescript - Meanwhile, I completed @freeCodeCamp Daily challenge for today with JavaScript - Checked my WakaTime dashboard #365DaysOfCode #DevCommunity #FCC #challenge #ts #mastra #groq #ai #js #code #x #dev
Day 342: - Started a Mastra project using @GroqInc API with a TS template for a weather agent - Still studying the code to understand the syntax and setup - Studying the docs too #365DayOfCode #ai #mastra #groq #google #api #ts #typescript #DevCommunity #hng #backend #a2a
DAY 1 Of LEARNING JAVASCRIPT. • JavaScript alerts • Variables and data types • Naming conventions • String concatenation • String length and how to retrieve the number of characters..... One step at a time... #JavaScript
Day 9: Write a function argumentsLength that returns the count of arguments passed to it. #30daysofjavascript #CodingChallenge #JavaScript #LeetCode
Day 9: Function Composition Easy 凸 Companies 9 Hint Given an array of functions [f1, f2, f3, ..., fal, return a new function fn that is the function composition of the array of functions. #30daysofjavascript #CodingChallenge #JavaScript #LeetCode
Day 6: Filter Elements from Array Given an integer array arr and a filtering function fn, return a filtered array filteredArr. The fn function takes one or two arguments: arr[i] - number from the arr i - index of arr[i] #30daysofjavascript #CodingChallenge #JavaScript
Day 5: Apply Transform Over Each Element in Array. Given an integer array arr and a mapping function fn, return a new array with a transformation applied to each element. #30daysofjavascript #CodingChallenge #JavaScript #LeetCode
CSS Mastery: The Power of the :has() Selector — Parent-Level Styling Finally Arrives aniketkudale.medium.com/css-mastery-th… #30daysofjavascript #CSS #LeetCode #codepen #Frontend
Day 3 challenge: To Be Or Not To Be Write a function "expect" that helps developers test their code. It should take in any value "val" and return an object with the following two functions: #30daysofjavascript #CodingChallenge #JavaScript #LeetCode
Day 5 of #100DaysOfCode Continue learning JavaScript ✅ #javascript #30DaysOfJavaScript #code #SoftwareEngineering
Day 10 of #30DaysOfJavaScript 📘 🧩 Problem: 2666. Allow One Function Call ✅ Concept: Closures & Function State 💡 Approach: Track if the function has been called; run once, then return undefined. 🔥 10 days streak done! 🚀 #LeetCode #JavaScript
Day 9 of #30DaysOfJavaScript 📘 🧩 Problem: 2703. Return Length of Arguments Passed ✅ Concept: Rest Parameters 💡 Approach: Use ...args and return args.length. #LeetCode #JavaScript
Day 8 of #30DaysOfJavaScript 📘 🧩 Problem: 2629. Function Composition ✅ Concept: Higher-Order Functions & reduceRight 💡 Approach: Apply functions right-to-left, passing the accumulator through each. #LeetCode #JavaScript
Day 30/30 of my #30DaysOfJavaScript on @LeetCode is complete! 🎉 This journey built consistency, discipline & sharpened my JS problem-solving 💻🔥 Huge thanks to @NamasteDev for the motivation. 🚀 On to the next challenge! #JavaScript #LeetCode"
Day 7 of #30DaysOfJavaScript 📘 🧩 Problem: 2626. Array Reduce Transformation ✅ Concept: Array Reduction & Accumulators 💡 Approach: Implemented a custom reduce by iterating and updating the accumulator with fn. #LeetCode #JavaScript
Day 6 of #30DaysOfJavaScript 📘 🧩 Problem: 2634. Filter Elements from Array ✅ Concept: Array Iteration & Conditionals 💡 Approach: Built a custom filter by checking each element with fn and pushing valid ones. #LeetCode #JavaScript
Day 5 of #30DaysOfJavaScript 📘 🧩 Problem: 2635. Apply Transform Over Each Element in Array ✅ Concept: Array Iteration & Higher-Order Functions 💡 Approach: Implemented a custom map by applying fn to each element with its index. #LeetCode #JavaScript
Day 4 of #30DaysOfJavaScript 📘 🧩 Problem: 2665. Counter II ✅ Concept: Closures & Object Methods 💡 Approach: Return an object with increment, decrement, and reset methods using a captured variable. #LeetCode #JavaScript
Day 3 of #30DaysOfJavaScript 📘 🧩 Problem: 2704. To Be Or Not To Be ✅ Concept: Objects & Error Handling 💡 Approach: Return an object with toBe & notToBe methods that validate values. #LeetCode #JavaScript
Day 2 of #30DaysOfJavaScript 📘 🧩 Problem: 2620. Counter ✅ Concept: Closures 💡 Approach: Return a function that increments and returns n. 📸 Solution below! #LeetCode #JavaScript
✨ These 4 days were full of aha + oops moments… but I can already see how the basics connect. Slowly but surely building my foundation 🚀 #CodingJourney #30DaysOfJavaScript #WebDevelopment #100daysofcode #100DayChallenge
🚀 Starting my #30DaysOfJavaScript challenge on LeetCode! Day 1 📘 🧩 Problem: 2667. Create Hello World Function ✅ Concept: Functions & Closures 💡 Approach: Return an inner function that outputs "Hello World". #LeetCode #JavaScript
Hey guys, Day 22 of #30daysofJavaScript #javascript #webdevelopment #Frontend #CodingChallenge #CodingJourney
Hey guys, Day 26 of #30daysofJavaScript #javascript #webdevelopment #Frontend #CodingChallenge #CodingJourney
Day 30/30 of my #30DaysOfJavaScript on @LeetCode is complete! 🎉 This journey built consistency, discipline & sharpened my JS problem-solving 💻🔥 Huge thanks to @NamasteDev for the motivation. 🚀 On to the next challenge! #JavaScript #LeetCode"
✅ Day 16 of #30DaysOfJavaScript Solved Leetcode 2637. Promise Time Limit ⏳✨ 🔹 Learned how to wrap async functions with a timeout using Promise.race() 🔹 If execution exceeds a limit, reject gracefully with an error message 🔹 Passed all test cases with solid runtime!#Leetcode
🚀 Day 24 of #30DaysOfJavaScript ✅ Completed Leetcode #2724: Sort By 🧠 Leveraged custom comparator in .sort() with a function callback 📊 All test cases passed + clean runtime! #CodeNewbie #100DaysOfCode #JavaScript #LeetCode #DevCommunity
Day 08 of getting placed within 6-8 months! Learned about variables: let, const, var. Built a Cart Quantity feature. Integrated JavaScript with HTML & CSS. Used console.log() for debugging. day 02 of #30daysofjavascript #100DaysOfCode #WebDevelopment #buildinpublic
🧩 Day 21 of #30DaysOfJavaScript Solved LeetCode #2677 - Chunk Array 🔥 Passed all 76 test cases! ⏱ Runtime: 46ms (Beats 51.21%) 💾 Memory: 57.75MB (Beats 11.44%) 👨💻 Progress: Stronger logic, cleaner code. Let’s keep going! 💪 #LeetCode #100DaysOfCode #JavaScript
🚀 Day 22/30 - #30DaysofJavaScript Today I enhanced all arrays with a .last() method using JavaScript's prototype! Now [1, 2, 3].last() gives 3 and [].last() gives -1 ✨ Loving how powerful JavaScript can be! 💻🔥 #JavaScript #Coding #LeetCode #100DaysOfCode
💡 Day 23/30 - #30DaysOfJavaScript Today’s challenge: Array.prototype.groupBy() 🧠 Grouped data like a pro without using Lodash 💪 ✔️ Passed all 86 test cases 🚀 Runtime beats 93.62% 🧠 Learned the power of prototype & custom logic! #JavaScript #CodingChallenge #LeetCode
✅ Day 10 of #30DaysOfJavaScript Solved 2666. Allow One Function Call on @LeetCode 🕒 Runtime: 51ms | 💾 Memory: 52.54MB Feeling great—JavaScript fundamentals getting sharper every day! 💪🔥 #LeetCode #100DaysOfCode
✅ Day 12 of #30DaysOfJavaScript Solved 2723. Add Two Promises on @LeetCode ✨ Learning how to combine multiple async results elegantly with Promise.all() 💡 🕒 Runtime: 56ms | 💾 Memory: 53.54MB #LeetCode #100DaysOfCode
🚀 Day 26 of #30DaysOfJavaScript ✅ Solved: Flatten Deeply Nested Array 🔍 Recursion + Depth Tracking to flatten arrays without .flat() 💪 Runtime beats 88.12% | Memory beats 74.07% Onwards to the final stretch! 🔥 #100DaysOfCode #JavaScript #LeetCode #CodingChallenge
Day 5 of #100DaysOfCode Continue learning JavaScript ✅ #javascript #30DaysOfJavaScript #code #SoftwareEngineering
⚠️2704: To Be Or Not To Be (Solved ✅) { used objects,arrow functions ,conditional statements!! } #30daysofjavascript #javascript #leetcode
✅ Day 11 of #30DaysOfJavaScript Solved 2623. Memoize on @LeetCode 🕒 Runtime: 281ms | 💾 Memory: 97.50MB Learning how to cache function results efficiently—memoization FTW! 🚀✨ #LeetCode #100DaysOfCode
✅ Day 13 of #30DaysOfJavaScript Solved 2725. Sleep on @LeetCode ✨ Learned how to pause execution asynchronously using setTimeout wrapped in a Promise ⏳ 🕒 Runtime: 51ms | 💾 Memory: 52.34MB #LeetCode #100DaysOfCode
Day 09 of getting placed within 6-8 months! • Boolean logic, if-statements & Rock Paper Scissors game • Functions, parameters & cleaner code optimization day 03 of #30daysofjavascript #100DaysOfCode #WebDevelopment #buildinpublic
Something went wrong.
Something went wrong.
United States Trends
- 1. Drake London 6,064 posts
- 2. Packers 38.4K posts
- 3. Colts 31.6K posts
- 4. Steelers 46.6K posts
- 5. FanDuel 36.8K posts
- 6. Falcons 25.7K posts
- 7. Bengals 32.7K posts
- 8. Daniel Jones 5,927 posts
- 9. Lions 53.7K posts
- 10. Jordan Love 7,746 posts
- 11. Bears 49.7K posts
- 12. Panthers 28.7K posts
- 13. Vikings 32.6K posts
- 14. Tee Higgins 4,487 posts
- 15. Parker Romo 1,012 posts
- 16. Caleb Williams 4,372 posts
- 17. #HereWeGo 4,969 posts
- 18. #Skol 3,205 posts
- 19. Matt LaFleur 1,822 posts
- 20. #NYGiants 3,700 posts