#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 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 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 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
Day 23: Classes and OOP ๐๏ธ๐ Object Oriented Programming in JS! Classes provide a clean & intuitive syntax for creating objects & implementing inheritance. They encapsulate data & behavior, promoting code organization & reusability in our programs. :) #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
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 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: Apply Transform Over Each Element in Array 30DaysOfJavaScript #leetcode #30daysofJs #javaScript #Js
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 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
Completed #day1 of #30daysofJS challenge by @Hiteshdotcom sir. Hope I will be consistent towards completing this challenge.
Something went wrong.
Something went wrong.
United States Trends
- 1. Veterans Day 121K posts
- 2. Mainz Biomed N/A
- 3. #csm220 N/A
- 4. United States Armed Forces N/A
- 5. Good Tuesday 33.8K posts
- 6. Vets 15.2K posts
- 7. #tuesdayvibe 2,056 posts
- 8. #MYNZ 1,113 posts
- 9. SoftBank 9,879 posts
- 10. Armistice Day 14.1K posts
- 11. Wike 20.4K posts
- 12. #Gratitude 1,750 posts
- 13. #Talus_Labs N/A
- 14. Nasdaq 36.4K posts
- 15. Taco Tuesday 12.4K posts
- 16. Made in China 3,657 posts
- 17. Bond 63.3K posts
- 18. Antifa 125K posts
- 19. Sally Kirkland N/A
- 20. NextNRG Inc N/A