JavaScript <-> PHP | Logical constant - false
JavaScript  Used keywords: false 
false
Description
falseOutput
- return - Logical value
Examples
JavaScript
In the source code you can find the equivalent of the above table, for easier orientation at the end of each line is a comment which shows the result.a1 = !false; // a1 = true
a2 = !true; // a2 = false
.
PHP  Used keywords: false 
false
Description
falseOutput
- return - Logical value
Examples
PHP
In the source code you can find the equivalent of the above table, for easier orientation at the end of each line is a comment which shows the result.$a1 = !false; // a1 = true
$a2 = !true; // a2 = false
JavaScript  Used keywords: false 
false
Description
falseOutput
- return - Logical value
Examples
JavaScript
In the source code you can find the equivalent of the above table, for easier orientation at the end of each line is a comment which shows the result.a1 = !false; // a1 = true
a2 = !true; // a2 = false
.
PHP
You can find it in the following collections: constants
Logical constant - false in another programming language:
Differences to: