Find the Best Cosmetic Hospitals

Explore trusted cosmetic hospitals and make a confident choice for your transformation.

“Invest in yourself — your confidence is always worth it.”

Explore Cosmetic Hospitals

Start your journey today — compare options in one place.

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

Find Trusted Cardiac Hospitals

Compare heart hospitals by city and services — all in one place.

Explore Hospitals
With MotoShare.in, you can book a bike instantly, enjoy doorstep delivery, and ride without worries. Perfect for travelers, professionals, and adventure enthusiasts looking for a seamless mobility solution.

Related Posts

What is JavaScript and use cases of JavaScript?

What is JavaScript? JavaScript is a programming language that is used to create interactive user interfaces and dynamic web pages. It is a client-side language, which means…

Read More

Complete guide of JavaScript certification courses, tutorials & training

What is JavaScript Every time a web page does more than simply sit there and display static information for you to look at, such as when it…

Read More

Complete JavaScript with AngularJS and NodeJS Certification Guide & tutorials

What is JavaScript with AngularJS and NodeJS? JavaScript was introduced as LiveScript, but Netscape converted its name to JavaScript. JavaScript is a dynamic computer programming language. It…

Read More

Best & Most Popular 5 Code Editors for JavaScript programming

JavaScript is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. JavaScript’s syntax is heavily inspired by C++ and…

Read More

Top 50 interview question and answers for JavaScript

JavaScript could be a scripting or artificial language that enables you to implement advanced options on websites each time an internet page will quite simply sit there…

Read More

TOP 250+ INTERVIEW QUESTIONS FOR JAVA

Here we will cover the basic, intermediate and advance level interview questions for java. Also we will cover the question related to java script. Java Basic interview…

Read More