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:
๐ js-logic-building on GitHub
Wish me luck for the next 99 days! Let's keep building. ๐ฅ
Top comments (0)