๐ Day 41 of #100DaysOfCode:
I built a Cash Register App that calculates change and checks if thereโs enough cash. It updates the UI with "OPEN", "CLOSED", or "INSUFFICIENT_FUNDS".
#JavaScript#WebDev#Connect#LearnInPublic
๐ Day 40 of #100DaysOfCode
๐ฎ Built a Platformer Game with movement & checkpoints!
๐ What it does:
โคฟ Player can move & jump on platforms
โคฟ Added checkpoints with pop-up messages
โคฟ Detects when the final checkpoint is reached
#JavaScript#connect#webdev#LearnInPublic
๐ Day 39 of #100DaysOfCode
๐ Built a Shopping Cart
What it does:
โ๏ธAdd, remove & clear items easily
โ๏ธAuto-updates total price & item count
โ๏ธUses event listeners for smooth actions
Great practice for OOP and DOM! How r u guys?
#JavaScript#WebDev#Connect#LearnInPublic
๐ Day 38 of #100DaysOfCode
Built a Phone Number Validator
What it does:
๐ง Validates phone nos. with Js & regex
๐ง Displays "Valid" or "Invalid" messages
๐งIncludes an alert for empty input & a Clear button for reset
#JavaScript#WebDevelopment#LearnInPublic
๐ Day 37 of #100DaysOfCode
๐ Built a Statistics Calculator
โ What it does:
โ Calculates Mean, Median, Mode, Range, Variance & Standard Deviation
โ Uses JavaScript methods like .sort(), .reduce(), and .map()
โ Easy way to analyze numbers!
#JavaScript#WebDev#connect
๐ Day 36 of #100DaysOfCode
๐ฉ Made a Spam Filter that spots spam msgs
โซ๏ธ Checks for words like "Dear friend", money offers, & free gifts
โซ๏ธUses regular expressions & .some() method to check for spam
โซ๏ธShows a warning if itโs spam, otherwise says itโs safe
#JavaScript#WebDev
๐ Day 35 of #100DaysOfCode
๐ข Built a Number Sorter
โ Takes numbers from dropdowns & converts them
โ Sorts them using Bubble, Selection & Insertion Sort
โ Updates the UI with the sorted result when you click "Sort"
#JavaScript#WebDev#connect#LearnInPublic
๐ Day 34 of #100DaysOfCode
Made a Roman Numeral Converter=>
What I did:
โ Matched numbers to Roman numerals using arrays & objects
โ Used loops to build the Roman numeral step by step
โ Changed text based on conditions to get the right result
#JavaScript#WebDev#connect
๐ Day 33 of #100DaysOfCode
๐ข Built a Decimal to Binary Converter to visualize recursion!
What it does:
๐น Converts numbers to binary using recursion
๐น Animates each step to show the call stack
๐นHandles user input & updates UI smoothly
#javascript#WebDev#LearnInPublic
๐ Day 32 of #100DaysOfCode
๐ Built a To-Do App
โจ Features:
๐ Add, edit & delete tasks
๐พ Saves tasks in localStorage
โก Dynamic UI updates instantly
๐ Form validation & confirmation modals
๐ Cleans input to prevent special character issues
#JavaScript#WebDev#Connect
๐ Day 31 of #100DaysOfCode
๐ Event Delegation โ A smarter way to handle events!
Instead of adding event listeners to multiple elements, attach one to a parent & let events "bubble up"
โ Less memory use
โ Handles dynamic elements
#javascript#WebDev#LearnInPublic#connect
Eg:
๐ Day 30 of #100DaysOfCode
๐ Built a Date Formatter App
โ Gets current date & time
โ Formats it in multiple styles (YYYY-MM-DD, MM-DD-YYYY, etc.)
โ Updates the UI dynamically based on user selection
๐ Learned abt Date objects, string formatting & handling user input
๐ Day 29 of #100DaysOfCode
๐ต Built a Music Player with JavaScript!
๐ผ Sort & Shuffle songs
โถ๏ธ Play & Pause with audio.play()
๐ Auto-plays next track
๐ Manage Playlist โ add & remove songs
๐ Learned a lot about arrays, events & DOM updates! ๐ #javascript