JavaScript
Day 1:
1. What is js?
2. What is console?
3. Features of js
● Whitespace and Line Breaks
● Semicolons are Optional
● Comments in JavaScript
● Dynamically typed
● Client side script
● Interpreted Language
● Object-Oriented
4. What is syntax?
5. Tokens:
● Keywords
● Variables
● Identifiers
● Datatypes:
1. Numbers
2. String
3. Boolean
4. Null
5. undefined
6. Operators:
1. Arithmetic Operators: +, -, *, /, %.
2. Assignment Operators: =, +=, -=, *=, /=.
3. Comparison Operators: ==, ===, !=, !==, >, <, >=, <=.
4. Logical Operators: &&, ||, !.
5. Bitwise Operators: &, |, ^, ~, <<, >>, >>>.
6. Unary Operators: typeof, void, delete, ++, --.
7. Miscellaneous Operators: Conditional Operator (? :) and the typeof operator.
Problems:
1. Design calculator
Day 2:
1. Control structures:
● Conditional Statements:
★ If, else if, else
★ switch
● loops:
★ While
★ Do-while
★ For
Programs:
1. Leap year program
2. Wap to identify vowels using switch case
3. Write a program to find prime number
4. W.a.p. To print first 50 number sum
5. Wap to reverse the number
6. Wap to find palindrome number nd string
7. Wap to find armstrong number