#30daysofjs search results
Day 21: Map, Set, & WeakMap ๐บ๏ธ๐ Powerful data structures for our programs! Map: key-value pairs with any type of key. Set: collection of unique values. WeakMap: key-value pairs whose keys must be objects. :) Connect & learn JavaScript with me! ๐ฅฐ #100DaysOfCode #30DaysOfJS
Day 6: Arrays and their methods ๐๐ Think of arrays as ordered lists in JS. They're hella versatile & can hold multiple items of any type. Array methods are our tools for managing these lists - add, remove, find, or transform elements, & a lot more. #100DaysOfCode #30DaysOfJS
Day 7: Objects & their methods ๐งฑ Objects are the building blocks of JS ๐ They're key-value pairs representing almost anything, bundling related data & functions. Object methods are functions attached to objects, perfect for object-specific actions. #100DaysOfCode #30DaysOfJS
Day 8: Strings ๐งต Strings represent the text in our programs ๐ They're sequences of characters we can slice, dice, & weave together. JS has many built-in methods that help us search, replace, split, & join strings, making text processing a breeze :) #100DaysOfCode #30DaysOfJS
Day 14: Promises ๐ค Promises are a way of handling asynchronous operations! ๐ They represent a value that might not be available yet, but will be later, so we can handle it preemptively. It helps us write cleaner async code & avoiding callback hell. #100DaysOfCode #30DaysOfJS
Day 16: DOM Manipulation ๐ณ It is the art of dynamically changing web page content!๐ This allows us to add, remove, or modify elements on a webpage using JavaScript. With DOM manipulation, we can create interactive and dynamic user experiences. :) #100DaysOfCode #30DaysOfJS
Day 13: Destructuring ๐งฉ Destructuring in JavaScript is like unpacking a gift box! ๐๐ It lets us extract values from arrays or properties from objects into distinct variables. This feature makes working with complex data a breeze! :) #100DaysOfCode #30DaysOfJS
Day 9: Error handling ๐ก๏ธ Try-catch blocks are our code's safety net ๐ They allow us to elegantly handle errors that might occur during execution. By TRYING risky code & CATCHING potential errors, we can prevent crashes and provide helpful feedback. #100DaysOfCode #30DaysOfJS
Day 12: Template literals ๐ Template literals are string's superpower in JavaScript ๐ They allow for easy multiline strings and embedded expressions, so we can say goodbye to clunky string concatenation and hello to clean, readable string templates. #100DaysOfCode #30DaysOfJS
Day 19: Local & Session Storage ๐พ๐ Our browser's built-in data vaults! localStorage persists data even after the browser closes, while sessionStorage clears it when the session ends, providing simple & powerful client-side storage solutions. :) #100DaysOfCode #30DaysOfJS
Day 10: Scope & closures ๐๐ Scope is like the visibility range in JS. It determines where variables and functions are accessible from in our code. Closures are functions that "remember" their creation environment, even when executed elsewhere. :) #100DaysOfCode #30DaysOfJS
Day 15: Async/Awaitโณ Async/Await is syntactic sugar for working with Promises! ๐ฌ๐ It allows us to write asynchronous code that looks and behaves like synchronous code. This makes our asynchronous logic easier to read, write, and reason about. :) #100DaysOfCode #30DaysOfJS
Day 22: Higher Order Functions ๐๐ HOFs are functions that use other functions by taking them as args/returning them. They are powerful as they enable functional programming patterns like map, filter, reduce, & promote code reusability & abstraction. #100DaysOfCode #30DaysOfJS
What I learned today: โ How to manage question flow with arrays โ Dynamically generate elements with JS โ State management for interactivity โ Graceful reset for replaying the quiz This project brought everything together โ a perfect final day! ๐ #30DaysOfJs #BuildInPublic
๐ Day 22 of #30DaysOfJS Built a Custom Dropdown Menu with icons for social platforms ๐จ ๐ฝ Click the selector ๐ฑ Choose a social media platform ๐ฏ Smooth toggle & icon support! #JavaScript #30DaysOfJs #FrontEnd #WebDev
๐๏ธ Day 21 of #30DaysOfJS Built a Product Image Switcher with Color & Size Options! ๐ผ๏ธ Click the dots to change the T-shirt image ๐ Choose size and color ๐ Includes quantity input + โBuy Nowโ button #JavaScript #CSS #FrontendDev
โ Day 16 of #30DaysOfJS Today, I built a sleek Coming Soon landing page with a live countdown timer โณ Perfect for announcing launches or maintenance updates โ includes animations, styling, and precise time logic! #BuildInPublic #30DaysOfJs #Frontend
๐ท Day 15 of #30DaysOfJS Built an Image Gallery with horizontal scroll using JavaScript! You can scroll with the mouse wheel or use navigation arrows โ and grayscale images smoothly animate on hover ๐ฏ #JavaScript #30DaysOfJs #BuildInPublic
Hereโs what I learned while building this โ๏ธ โ Real-time validation with onkeyup โ Regex for name, phone, and email formats โ Conditional DOM updates for error/success icons โ Showing/hiding error messages dynamically 1% better today. #JavaScript #LearnInPublic #30DaysOfJS
โ Day 14 of #30DaysOfJS I built a Form Validation App using vanilla JavaScript! It checks names, phone numbers, emails, and messages in real-time with visual feedback โ super useful for any contact form ๐จ #JavaScript #30DaysOfJS #BuildInPublic
What I learnt today ๐ โ How to use input event listeners for live feedback โ Updating styles dynamically using JS โ Password strength logic with simple conditions โ Toggle visibility of elements with display Feeling more confident every day! ๐ง #30DaysOfJS #JavaScript
๐Day 13 of #30DaysOfJS Today, I built a Password Strength Checker using plain JavaScript! It gives real-time feedback based on password length with visual indicators for weak, medium, or strong ๐ช Simple logic, but super useful in forms! #30DaysOfJs #FrontEnd #BuildInPublic
What I learned in Day 12๐ โ Show/hide modals using class toggling โ DOM targeting with getElementById() #buildinPublic #30DaysOfJs #FrontEnd
Day 21: Map, Set, & WeakMap ๐บ๏ธ๐ Powerful data structures for our programs! Map: key-value pairs with any type of key. Set: collection of unique values. WeakMap: key-value pairs whose keys must be objects. :) Connect & learn JavaScript with me! ๐ฅฐ #100DaysOfCode #30DaysOfJS
Day 16 done! โ Mastered recursion techniques like factorial, Fibonacci, and binary search. Grateful to @hiteshdotcom! ๐ป #30DaysOfJS #CodeEveryday
Day 11 Challenge of #30DaysOfJS Completed #ScalerDiscord #ScalerTopic #ScalerTopics Discord:discord.gg/scaler-by-inteโฆ
Day 12 Challenge of #30DaysOfJS Completed #ScalerDiscord #ScalerTopics #ScalerTopic Discord: discord.gg/scaler-by-inteโฆ
Day 6: Arrays and their methods ๐๐ Think of arrays as ordered lists in JS. They're hella versatile & can hold multiple items of any type. Array methods are our tools for managing these lists - add, remove, find, or transform elements, & a lot more. #100DaysOfCode #30DaysOfJS
๐ Completed Day 1 of learning JavaScript! - Declared variables with `var`, `let`, and `const` - Explored JavaScript data types - Used `typeof` to identify data types - Understood variable reassignment and `const` immutability Excited for Day 2! ๐ #CodeAurChar #30DaysOfJS
Day 7: Objects & their methods ๐งฑ Objects are the building blocks of JS ๐ They're key-value pairs representing almost anything, bundling related data & functions. Object methods are functions attached to objects, perfect for object-specific actions. #100DaysOfCode #30DaysOfJS
Completed #day1 of #30daysofJS challenge by @Hiteshdotcom sir. Hope I will be consistent towards completing this challenge.
Day 7 done! โ Grateful to @hiteshdotcom for the object insights. Excited for Day 8! ๐ป #30DaysOfJS #CodeEveryday
Something went wrong.
Something went wrong.
United States Trends
- 1. Steelers 53.4K posts
- 2. #ITZY_TUNNELVISION 30.9K posts
- 3. Mr. 4 4,705 posts
- 4. Rudy Giuliani 13.1K posts
- 5. Chargers 38.6K posts
- 6. Resign 114K posts
- 7. #MondayMotivation 28.7K posts
- 8. Schumer 234K posts
- 9. Tomlin 8,382 posts
- 10. #Talus_Labs N/A
- 11. Rodgers 21.5K posts
- 12. 8 Democrats 10.5K posts
- 13. Tim Kaine 22.9K posts
- 14. Sonix 1,424 posts
- 15. Happy Birthday Marines 3,188 posts
- 16. Voltaire 9,087 posts
- 17. Angus King 19K posts
- 18. #BoltUp 3,132 posts
- 19. Dick Durbin 14.9K posts
- 20. The BBC 400K posts