diff --git a/Week-1/Day-5/Readme.md b/Week-1/Day-5/Readme.md new file mode 100644 index 0000000..3d4b563 --- /dev/null +++ b/Week-1/Day-5/Readme.md @@ -0,0 +1,10 @@ +# Week 1 – Day 5: Basic JavaScript + +## Topics Covered +- JavaScript introduction +- Variables and data types +- Operators +- Basic output methods + +## Status +Completed diff --git a/Week-1/Day-5/javascript-basics.md b/Week-1/Day-5/javascript-basics.md new file mode 100644 index 0000000..8ef6bbb --- /dev/null +++ b/Week-1/Day-5/javascript-basics.md @@ -0,0 +1,23 @@ +# Week 1 Day 5 – Basic JavaScript + +## Objective +To understand the fundamentals of JavaScript and how it adds interactivity to web pages. + +## Work Done +- Learned what JavaScript is and where it is used +- Understood how JavaScript runs in the browser +- Practiced writing basic JavaScript syntax +- Used variables to store data +- Learned different data types +- Practiced basic operators +- Used alert and console.log for output + +## Concepts Covered +- Introduction to JavaScript +- Variables (var, let, const) +- Data types (number, string, boolean) +- Operators (arithmetic, comparison) +- Output methods (alert, console.log) + +## Learning Outcome +Understood the basics of JavaScript and how it interacts with HTML to create dynamic behavior.