Hello everyone! 👋
I have officially started my Frontend Web Development learning journey. Instead of just watching tutorials, I decided to jump straight into hands-on practice to build a strong foundation.
💻 Day 1 Milestones
Today, I focused on core fundamentals and built 4 basic programming tasks to understand how variables and conditional operations work in real scenarios:
- 📅 Days in a Year: Storing data and printing it dynamically inside sentences.
- 🧾 Restaurant Bill: Calculating total amounts with added tax values.
- 📊 Percentage Calculator: Finding student scores out of total marks.
- 🗳️ Voting Eligibility Check: Implementing basic
if/elseconditional logic.
📝 Example Code (Restaurant Bill Logic)
Here is a quick look at one of the logic programs I wrote today:
let bill = 1500;
let tax = 250;
let total_bill = bill + tax;
console.log("Total bill including tax is " + total_bill);
🚀 Accountability & Code Repo
I am hosting all my practice code on GitHub to track my consistency and progress. You can check out my repository here:
Wish me luck for the next 99 days! Let's keep building. 🔥
SOCIAL SHARE CARD GENERATOR