#100daysofjavascript результаты поиска
Day 1 of #100daysofjavascript Created a Counter App Using HTML, CSS and JavaScript. #100DaysOfCode #100dayscodingchallenge #



Day 2 of #100daysofjavascript Building an ecomm clothing web With vanilla , no framework since my Mac be misbehaving ,Added the add to favorite button function today 🧘♂️ #indiehackers
Day 3 of #100daysofjavascript Going back to vanilla after using a framework is stressful but at least it makes you more perfect !!!
Day 4 of #100daysofjavascript Created a Modal PopUp Using HTML, CSS and JavaScript. #100DaysOfCode #100dayscodingchallenge #webdevelopment #javascript



Day 14 of #100daysofcodechallenge Today I learnt about the use of Functions in JavaScript and how to name a Function. Then I went on to learn the difference between a 'parameter' and an 'argument'. #100daysofJavaScript #100DaysOfCode

🚀 Day 90 of #100DaysOfJavaScript Learnt: Performance Patterns - Import on Interacting - Lazy Loading components/libraries on user interactions - Import on Visibility - Lazy Loading images on scroll using IntersectionObserver API Excited to dive into Prefetch and Preload next!



🚀 Day 95 of #100DaysOfJavaScript Learnt: - Client Side rendering - render html on client - Server Side rendering using ejs and express server - generates html on server. - Differences b/w them Excited to dive into Static rendering pattern next! #javascript




🚀 Day 85 of #100DaysOfJavaScript Learnt: Module DP - Split code into smaller reusable files. Prototype DP- Share properties among objects of same type and access them through prototype chain. Excited to dive into Provider and Proxy patterns next! #javascript




🚀 Day 91 of #100DaysOfJavaScript Learnt: Performance Pattern - Prefetch - fetch resources that will be required in future and caches it - Preload - fetch critical resources that are required in the initial render Will dive into optimizing loading 3rd parties next! #javascript


🚀 Day 93 of #100DaysOfJavaScript Learnt: - PRPL Pattern -Push critical Resources, Render initial route asap, Precache assets using workbox-precaching library & Lazy load - List Virtualization -only render items that are visible on screen Will dive into Rendering patterns next!



🚀 Day 100 of #100DaysOfJavaScript Learnt: JavaScript Unit Testing fwk - Jest - Written unit test suites That's it for this challenge. Will continue building projects & learning consistently Thankyou all for your support & motivation. Will reward myself with an ice-cream next😊




Day 3 of my #100daysofjavascript linkedin.com/posts/abdulqua…
linkedin.com
#day3 #100daysofjavascript #100daysofcode #100daysofjavascript #frontend #coding #codingforbeginner...
#day3 of #100daysofJavascript 🌟 JavaScript Essentials: Choosing Between const, let, and var 🌟 If you've worked with JavaScript, you’ve likely encountered const, let, and var. These keywords may...
🚀 Day 86 of #100DaysOfJavaScript Learnt: Proxy DP- Interacting with the proxy object instead of interacting with target object directly. - Validations using Proxy - Reflect object - minimal wrappers around obj internal methods. Will dive into Singleton & Static Import DP next!


Day 9 of #31DaysOfJS Checks if at least one element matches a condition. 🔸 array.some(callback) ✔️ Returns true or false ✔️ Stops once a match is found ✔️ Great for quick validations Thread 👇👇🧵 #100DaysOfCode #100DaysOfJavaScript

🚀 Day 99 of #100DaysOfJavaScript Learnt: - Island Architecture - renders static content on server & uses placeholders for dynamic content which hydrates over client - Created a blog using Astro blog templates. Will end this challenge with Jest Javascript testing tomorrow.




Not sure how plugins or routes are loaded and need to debug your Fastify application? Fastify includes a printRoutes() and printPlugins() helper methods that help make sense of it all ;-) #100DaysOfJavaScript #NodeJS

Day 1 of JavaScript Concepts An array is a data structure that holds a collection of values which can be of any data type: numbers, strings, objects, even other arrays. Arrays are zero-indexed, meaning the first element is at index 0. #100DaysOfCode #100DaysOfJavaScript

🚀 Day 92 of #100DaysOfJavaScript Learnt: Optimizing Third party loading - using async or defer for non-critical scripts - using preconnect/ dns-prefetch resource hints for critical resources - lazy loading images/3rd party embeddings - loading attribute and lazysizes library




🚀 Day 82 of #100DaysOfJavaScript Learnt: Factory Pattern - create new objects in a centralized way Command Pattern - decouple objects that executes task from object that calls the method Excited to dive into Singleton and Strategy patterns next! #javascript




Day 31/100 of #100DaysOfCode (JavaScript) Today’s focus → revisiting notes & solidifying past lessons. Will ask GPT for new exercises to test my understanding. Reminder: progress = consistency + reflection, not just speed. #100DaysOfJavaScript

Day 9 of #31DaysOfJS Checks if at least one element matches a condition. 🔸 array.some(callback) ✔️ Returns true or false ✔️ Stops once a match is found ✔️ Great for quick validations Thread 👇👇🧵 #100DaysOfCode #100DaysOfJavaScript

Which is harder? Coding or Designing ? #100DaysOfCode #100DaysOfJavaScript #ui #UXDesign #figma #MediaQuery
Day 2 of #31DaysOfJS Creating & Accessing Arrays Arrays are zero-indexed and mutable meaning you can update elements by index #100DaysOfCode #100DaysOfJavaScript #31DaysOfJS #WebDevelopment #programming #FrontendDev

Day 1 of JavaScript Concepts An array is a data structure that holds a collection of values which can be of any data type: numbers, strings, objects, even other arrays. Arrays are zero-indexed, meaning the first element is at index 0. #100DaysOfCode #100DaysOfJavaScript

🧠 JavaScript Day 17 – DOM + Events Practicing dynamic UI changes: ✅ Show/hide elements on click ✅ Change styles with input ✅ React to user actions Making your page feel alive ⚡ #100DaysOfJavaScript #JavaScript
Day 32 of #100DaysOfJavaScript 📝 Built a Twitter-style text limiter with live character count using JavaScript. It restricts input to a max length and updates the count in real time — lightweight and user-friendly. Great practice for form validations and UI feedback ✨
Day 31 of #100DaysOfJavaScript 🟣 Today I created a Custom Range Slider with real-time value display. Styled it with a modern look and synced the display box dynamically using JavaScript. Learning how to combine logic + UI for smoother interactivity 💡
Day 30 of #100DaysOfJavaScript 🎉 Built a fun little Background Color Toggle using JavaScript! Click a button → Watch the background instantly switch between red and purple ✨ It’s a simple but effective way to practice DOM manipulation and event handling.
Day 29 of #100DaysOfJavaScript 🎯 Created a sleek and animated Progress Bar that visually reflects progress with a smooth fill and percentage indicator. It's minimal, reusable, and super handy for forms, uploads, or quizzes. Sometimes simple UI can make a big difference in…
Day 28 of #100DaysOfJavaScript 🧠🔒 Built a dynamic Password Strength Validator that checks for uppercase/lowercase, numbers, symbols, and minimum length – all in real-time. Loved making the live progress bar respond as the password meets each condition. A small UI that adds…
Day 27 of #100DaysOfJavaScript 🔐 Designed a clean Login & Registration UI with smooth transitions. Includes essential features like "Forgot Password" and user-friendly form switching. Creating these small UIs strengthens my layout, logic, and interaction skills every day!
📅 Day 4 of #100DaysOfJavaScript 🔹 Linked external JavaScript files 🔹 Learned values & variables 🔹 Naming rules for variables 🔹 Data types in JS 🔹 7 Primitive Data Types: → string, number, boolean, null, undefined, symbol, bigint #JavaScript #100DaysOfCode

Day 26 of #100DaysOfJavaScript 💱 Created a Simple Currency Converter App with real-time conversion between selected currencies. You can swap currencies and see updated values instantly based on the given exchange rate. Every bit of code helps me understand real-world financial…
Day 25 of #100DaysOfJavaScript 🧾 Built a Registration Form App that includes input validation for username, email, password, and confirmation fields. Simple, clean, and secure! Learning how to handle forms properly is so essential for real-world apps.
Day 24 of #100DaysOfJavaScript 🛍️ Created a Product Filter App where users can dynamically search and filter products based on categories. Built with pure JavaScript and styled for a smooth shopping UI experience!
Day 23 of #100DaysOfJavaScript 🧮 Built a BMI Calculator App! Just input your height and weight and it instantly calculates your Body Mass Index. Simple, responsive, and cleanly styled!
Day 22 of #100DaysOfJavaScript 🎬 Created a Movie App that fetches and displays movies dynamically using an API! Search by title, get posters & details — all with clean UI!
Day 21 of #100DaysOfJavaScript 🔐 Built a simple login form with a neat Password Visibility Toggle! No more guessing what you typed — just tap the eye icon 👁️
Day 20 of #100DaysOfJavaScript 📝 Built a minimal yet functional Notes App! Create, update, and delete notes effortlessly — data even stays after refresh with local storage. Productivity made simple!

Day 1 of #100daysofjavascript Created a Counter App Using HTML, CSS and JavaScript. #100DaysOfCode #100dayscodingchallenge #



Day 8 of #100daysofjavascript #100dayscoding, today I added animation to a section in the project I’m working on. I did research on LocaleDate string, how Dey can be updated automatically and I did get it. This new week I will work on the “login” section.


Day 16 of #100daysofjavascript #100dayscoding For the past 1 and the half weeks, I have been learning scss. And I decided to put my learning into practice.



Shit I got late today. But I won't miss out on my work. Day 100 of #100DaysofJavaScript I made a simple minesweeper game. #buildinpublic @JavaScriptDaily

Day 89: Personal Project: Still working on the Simple Contact App - Added the "Add feature" to add a new contact - Added a "Search feature" to search for an existing contact - Currently working the Edit feature for editing the details of an existing contact #100DaysofJavaScript

Day 88: Personal Project: - Currently working on a Simple Contact App. To Add, View, Edit and Delete Contacts. #100daysofJavaScript #Day88

Day 13 of #100DaysofJavaScript Made a simple Google Map Component, that uses gmap api. @JavaScriptDaily

day 5 of #100daysofJavaScript built a weather App. learned how to use an API. used @OpenWeatherMap API for live data. #JavaScript @JavaScript @JavaScriptDaily @javascriptd

Day 9 of #100DaysofJavaScript Made a simple geometric pattern component. It's fun playing with some math in javascript. @JavaScriptDaily #buildinpublic

Day 3 &4 of #100DaysofJavaScript I built a simple password generator. this small projects help me in giving a knack to build something daily from javascript. @JavaScriptDaily @JavaScript @html5 @css #buildinginpublic @buildinpublic @_LearnInPublic_

Day 4 of #100daysofjavascript Created a Modal PopUp Using HTML, CSS and JavaScript. #100DaysOfCode #100dayscodingchallenge #webdevelopment #javascript



DAY2 OF #100DaysOfCode learned ✅ OPERATOR ✅CONDITIONS ✅LOOPS ✅FUNCTIONS ✅MADE CALCULATOR USING SWITCH #100daysofjavascript #javascript #100daysofcodechallenge

Day 8 of #100daysofJavaScript Made a simple yet powerful translator app using vanilla @JavaScript . It can dictate the text out too.🚀

Day 12 of #100DaysofJavaScript Made a breakout game. I think small making games is fun, but I need to move upward towards more functional and robust systems. cya🚀

Day 2 of #100DaysofJavaScript. I made a Online text editor. gaining hands-on with the event listeners and createElement and getElementbyId methods in @JavaScript @JavaScriptDaily

Day 2 of #100daysofjavascript #100daysofcoding, for day 2 i read more from javascript.info Learnt about comparison and comparison are Boolean types and I also read about the logical operator “and, or, not, nullish. I did a little practice.


Something went wrong.
Something went wrong.
United States Trends
- 1. Jags 9,697 posts
- 2. Trevor Lawrence 3,891 posts
- 3. Rams 18.8K posts
- 4. Jaguars 11.6K posts
- 5. #Hardrockbet 2,501 posts
- 6. #Mevolaxy N/A
- 7. Travis Hunter 3,952 posts
- 8. Stafford 5,485 posts
- 9. Liverpool 151K posts
- 10. Go Birds 6,494 posts
- 11. Brian Thomas 1,151 posts
- 12. #DUUUVAL 1,356 posts
- 13. Davante Adams 1,735 posts
- 14. Cam Little 1,162 posts
- 15. Parker Washington N/A
- 16. #sundayvibes 6,571 posts
- 17. Woodstock 4,965 posts
- 18. Brandon Graham 1,412 posts
- 19. #EAT_IT_UP_SPAGHETTI 87.8K posts
- 20. Louvre 96.9K posts