Javascript

[Javascript] JavaScript / operator / comparison operator

OOQ 2022. 7. 29. 10:06
728x90
SMALL

#javascript

The Cpmparison Operator is used to compare the value of a variable with any value or other variable. There are eight comparison operators, but let's take a look at the meaning of each operator.

==

== is "same". True if the values ​​are equal regardless of variable type. in short

5 == 5

The above content is also correct

'5' == 5

The above content is also correct

!=

! = Is "not the same".

===

=== is "exactly the same". The meaning of "strictly" is to consider even variable types. True if not only the value of the variable, but also the type of the variable is the same. in short

5 === 5

The above is true

'5' === 5

The above code is fake. This is because the variables on the left are strings and the variables on the right are numbers.

!==

! == Is "not exactly equal". The meaning of "strictly" is to consider even variable types. It is true that not only the value of the variable but also the type of the variable is different. in short

'5' != 5

The above code is fake

'5' !== 5

The code above is true.

 

>

> Is "big".

>=

> = Is "greater than or equal to".

<

<Is "small".

<=

<= Is "smaller or equal".

728x90
LIST