Java Script – Topics :
1. Basics : [Link]( ), [Link]( ) and changing the content in the web
[[Link](“#ID”).textContent= “something”;
2. Variables :
Let age = 25; let price = 10.33; let name = “japson”; let two = true;
[Link](age);
[Link](“I am ” + age + “ years old”);
[Link](true);
3. Arithmetic Operators :
Let student = 25;
Student = Student + 2; (Augmented Arithmetic operations : Student +=2;)
Student = Student - 2;
Student = Student * 2;
Student = Student / 2;
Student = Student **2;
Arithmetic Operators precedence :