πŸš€ DevOps & SRE Certification Program πŸ“… Starting: 1st of Every Month 🀝 +91 8409492687 πŸ” Contact@DevOpsSchool.com

Upgrade & Secure Your Future with DevOps, SRE, DevSecOps, MLOps!

We spend hours on Instagram and YouTube and waste money on coffee and fast food, but won’t spend 30 minutes a day learning skills to boost our careers.
Master in DevOps, SRE, DevSecOps & MLOps!

Learn from Guru Rajesh Kumar and double your salary in just one year.


Get Started Now!

Comparison or Relational Operators in JavaScript.

1 . Less than ( < ) :- This operation will return TRUE when the expression will be satisfied and FALSE when not satisfied. See the Below Example

var a = 5<2 ;
document.write(a) ;

OUTPUT :- False

2 . Greater than ( > ) :- This operation will return TRUE when the expression will be satisfied and FALSE when not satisfied. See the Below Example

var a = 5>2 ;
document.write(a) ;

OUTPUT :- True

3 . Less than or Equal to ( <= ) :- When 1st element is Less than or Equal to the other element then it returns TRUE otherwise FALSE. See the Below Example

var a = 5<=2 ;
document.write(a) ;

OUTPUT :- False

4 . Greater than or Equal to ( >= ) :- When 1st element is Greater than or Equal to the other element then it returns TRUE otherwise FALSE. See the Below Example

var a = 5>=2 ;
document.write(a) ;

OUTPUT :- True

5 . Equal to ( == ) :- When 1st element is Equal to the other element then it returns TRUE otherwise FALSE. See the Below Example

var a = 5==2 ;
document.write(a) ;

OUTPUT :- False

6 . Not Equal to ( != ) :- When 1st element is Not Equal to the other element then it returns TRUE otherwise FALSE. See the Below Example

var a = 5!=2 ;
document.write(a) ;

OUTPUT :- True

7 . Equal Value and Same Type ( === ) :- When 1st element is Equal to and of the Same Type to the other element then it returns TRUE otherwise FALSE. See the Below Example

var a = 5===5 ;
document.write(a) ;

OUTPUT :- True
Note :- in the above example the elements are of equal value and same type, so it returns TRUE.
————————————————————————————————–
var a = 5===”5β€³ ;
document.write(a) ;

OUTPUT :- FALSE
Note :- in the above example the elements are of equal value but not of same type, so it returns TRUE.

8 . Not Equal Value or Not Same Type ( === ) :- When 1st element is Not Equal to or Not Same Type to the other element then it returns TRUE otherwise FALSE. See the Below Example

var a = 5!==5 ;
document.write(a) ;

OUTPUT :- FALSE
Note :- in the above example the elements are of equal value or the same type, therefore it can’t satisfy the expression and returns FALSE.
————————————————————————————————–
var a = 5!==”5β€³ ;
document.write(a) ;

OUTPUT :- TRUE
Note :- in the above example the elements are of equal value but not of same type, therefore it satisfies the expression and returns TRUE.

Video Reference

Certification Courses

DevOpsSchool has introduced a series of professional certification courses designed to enhance your skills and expertise in cutting-edge technologies and methodologies. Whether you are aiming to excel in development, security, or operations, these certifications provide a comprehensive learning experience. Explore the following programs:

DevOps Certification, SRE Certification, and DevSecOps Certification by DevOpsSchool

Explore our DevOps Certification, SRE Certification, and DevSecOps Certification programs at DevOpsSchool. Gain the expertise needed to excel in your career with hands-on training and globally recognized certifications.