Free Pascal <-> JavaScript | Equal to
Free Pascal  Used keywords: = 
=
Description
par1 = par2Input
- par1 - Any number
- par2 - Any number
Output
- Result - Logical value Returns a true, if the first number is Equal to the second, otherwise false.
Note: It works over all types of numbers.
Examples
Free Pascal
Equal to the possible of use:a := 4 = 2;         // a = false
b := c = f(5);
if  x = 5 then
   dec(y);Free Pascal
Even one example in what situations we can use the operation Equal to:x = y + 3
2 = f(2.28)
(j - 8) = 5.123.
JavaScript  Used keywords: == 
==
Description
par1 == par2Input
- par1 - Any number
- par2 - Any number
Output
- Result - Logical value Returns a true, if the first number is Equal to the second, otherwise false.
Note: It works over all types of numbers.
Examples
JavaScript
Equal to the possible of use:a = 4 == 2;         // a = false
b = c == f(5);
if ( x == 5 )
   --y;JavaScript
Even one example in what situations we can use the operation Equal to:x == y + 3
2 == f(2.28)
(j - 8) == 5.123You can find it in the following collections: relational operators
Equal to in another programming language:
Differences to: