JavaScript Operators
Full Stack Web Development Courses with Real-time projects Start Now!!
Program 1
// Category of operators in java script
/*
Unary , Binary , Ternary
a=10
++a --b ~a
? : Conditional Operator
*/
console.log(5>2 && 3<5)
// Types of Operators in Java Script
/*
1. Arithmetical Operator Binary
2. Relational Operator Binary
3. Logical Operator Binary
4. Increment/Decrement Operator Unary
5. Conditional Operator Ternary
6. Bitwise Operator Binary
7. String Operator Binary
8. Type Operator Binary
*/
Did we exceed your expectations?
If Yes, share your valuable feedback on Google

