Week 1 Day 5: Introduction to basic JavaScript

This commit is contained in:
2025-12-23 15:40:29 +05:30
parent e35ba9d985
commit df6447c8eb
2 changed files with 33 additions and 0 deletions

10
Week-1/Day-5/Readme.md Normal file
View File

@@ -0,0 +1,10 @@
# Week 1 Day 5: Basic JavaScript
## Topics Covered
- JavaScript introduction
- Variables and data types
- Operators
- Basic output methods
## Status
Completed

View File

@@ -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.