#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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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
iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

iraacodes's tweet image. 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

qasimrokeeb's tweet image. ๐Ÿ“Œ 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
qasimrokeeb's tweet image. ๐Ÿ“Œ 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

qasimrokeeb's tweet image. ๐Ÿ›๏ธ 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
qasimrokeeb's tweet image. ๐Ÿ›๏ธ 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

qasimrokeeb's tweet image. โœ… 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
qasimrokeeb's tweet image. โœ… 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

qasimrokeeb's tweet image. ๐Ÿ“ท 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
qasimrokeeb's tweet image. ๐Ÿ“ท 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

qasimrokeeb's tweet image. โœ…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
qasimrokeeb's tweet image. โœ…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

qasimrokeeb's tweet image. ๐Ÿ”’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
qasimrokeeb's tweet image. ๐Ÿ”’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


No results for "#30daysofjs"

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

iraacodes's tweet image. 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 9 โœ… Done! Thanks @Hiteshdotcom for amazing content. #30DaysOfJs #CodeEveryday

DevanshPatil9's tweet image. Day 9 โœ… Done! Thanks @Hiteshdotcom for amazing content. #30DaysOfJs
#CodeEveryday
DevanshPatil9's tweet image. Day 9 โœ… Done! Thanks @Hiteshdotcom for amazing content. #30DaysOfJs
#CodeEveryday

Day 16 done! โœ… Mastered recursion techniques like factorial, Fibonacci, and binary search. Grateful to @hiteshdotcom! ๐Ÿ’ป #30DaysOfJS #CodeEveryday

DevanshPatil9's tweet image. Day 16 done! โœ… Mastered recursion techniques like factorial, Fibonacci, and binary search. Grateful to @hiteshdotcom! ๐Ÿ’ป #30DaysOfJS #CodeEveryday
DevanshPatil9's tweet image. Day 16 done! โœ… Mastered recursion techniques like factorial, Fibonacci, and binary search. Grateful to @hiteshdotcom! ๐Ÿ’ป #30DaysOfJS #CodeEveryday

Day 10โœ… Done of 30 days JS Challenge by @Hiteshdotcom #30DaysOfJs #CodeEveryday

DevanshPatil9's tweet image. Day 10โœ… Done of 30 days JS Challenge by @Hiteshdotcom #30DaysOfJs #CodeEveryday
DevanshPatil9's tweet image. Day 10โœ… Done of 30 days JS Challenge by @Hiteshdotcom #30DaysOfJs #CodeEveryday

Day 8 complete! โœ… Thanks @hiteshdotcom. Excited for Day 9! ๐Ÿ’ป #30DaysOfJS #CodeEveryday

DevanshPatil9's tweet image. Day 8 complete! โœ… Thanks @hiteshdotcom.
Excited for Day 9! ๐Ÿ’ป #30DaysOfJS #CodeEveryday
DevanshPatil9's tweet image. Day 8 complete! โœ… Thanks @hiteshdotcom.
Excited for Day 9! ๐Ÿ’ป #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

iraacodes's tweet image. 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

aRyanSayzz's tweet image. ๐ŸŽ‰ 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

iraacodes's tweet image. 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
iraacodes's tweet image. 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.

_siva_sai's tweet image. Completed #day1 of #30daysofJS challenge by @Hiteshdotcom sir.

Hope I will be consistent towards completing this challenge.
_siva_sai's tweet image. 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

DevanshPatil9's tweet image. Day 7 done! โœ… Grateful to @hiteshdotcom for the object insights. Excited for Day 8! ๐Ÿ’ป #30DaysOfJS
#CodeEveryday
DevanshPatil9's tweet image. Day 7 done! โœ… Grateful to @hiteshdotcom for the object insights. Excited for Day 8! ๐Ÿ’ป #30DaysOfJS
#CodeEveryday

Loading...

Something went wrong.


Something went wrong.


United States Trends