Project 3/25 — Converter This is where JavaScript started to click for me When I started learning JavaScript, one thing felt confusing at first: How do you actually make a webpage respond to user input? So I built this project — a combination of 3 mini tools: • A unit converter (kg ↔ pounds, etc.) • A currency converter (using a third-party API) • A Roman numeral converter The goal wasn’t complexity — it was understanding how to work with the DOM and build interactive features. This project helped me learn: • How to manipulate the DOM dynamically • Handling user input and events • Integrating a third-party API for real-time currency conversion • also learnt how promises work with the third-party Api • Structuring logic for multiple features in one application • Handling Arithmetic with JavaScript Tech stack: HTML, CSS, JavaScript Looking back, this was the project where things started to make sense it was like my own version of to do app(which was most peoples first JavaScript projects) — moving from static pages to real interactivity. Live demo: https://lnkd.in/dB-nmj2G More projects and lessons coming in this series. #JavaScript #FrontendDevelopment #WebDevelopment #Project25 #BuildInPublic
Great one
I love how you combined multiple converters to really get a grip on DOM manipulation and APIs such a solid step from static pages to interactive JavaScript.