0% found this document useful (0 votes)
13 views1 page

JavaScript Basics: Variables & Operators

The document discusses topics in JavaScript including basics like console.log() and changing content, variables using let, and arithmetic operators like addition, subtraction, multiplication, and division along with precedence.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
13 views1 page

JavaScript Basics: Variables & Operators

The document discusses topics in JavaScript including basics like console.log() and changing content, variables using let, and arithmetic operators like addition, subtraction, multiplication, and division along with precedence.
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd

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 :

You might also like