JAVASCRIPT LOOPS Types of Loops
1. for loop 2. while loop 3. do-while 4. for/in 5. for/each
Loops Read More
JAVASCRIPT CONDITIONAL STATEMENT
CONDITIONAL STATEMENTS
Types of Conditional Statement
1. IF
EXAMPLE : let x=8; if (x>15) { Document.write ("AMD"); }
2. IF-ELSE
EXAMPLE : let x=8;
if (x>15) { Document.write ("AMD"); } else Read More
JAVASCRIPT OPERATORS
In this topic will discuss about JavaScript Operators
Types of Operators 1. Arithmetic Operators 2. Assignment Operators 3. String Operators Read More
JAVASCRIPT TEMPLATE LITERALS
TEMPLATE LITERALS : It is usefull whenever you want to print any string in that string if any Read More
Scroll Down Automatically When Button click
Scroll Down
First Message
Message
Message Read More
JAVASCRIPT DATA TYPES
In javascript we define values to javascript variables we may define any value to that variable, if you Read More
JAVASCRIPT COMMENTS
Comments means if you write a script in a file may be that related to logic or that related Read More
JAVASCRIPT VARIABLES TYPES
There are three types of javascript Variables
1. VAR
Var type is used to define one value to one variable
Example Read More