Boolean: Difference between revisions
Mr. MacKenty (talk | contribs) (Created page with "right|frame|Programming basics<ref>http://www.flaticon.com/</ref> In most computer programming languages, a Boolean data type is a data type with only two...") |
Mr. MacKenty (talk | contribs) |
||
Line 22: | Line 22: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
In Javascript: | |||
<syntaxhighlight lang="javascript"> | |||
var myFirstVar = true; | |||
var myOtherVar = false; | |||
</syntaxhighlight> | |||
== Do you understand this? == | == Do you understand this? == |
Revision as of 05:59, 5 August 2017
In most computer programming languages, a Boolean data type is a data type with only two possible values: true or false.[2]
By convention we can express true as the integer 1 and false as the integer 0 (zero). Please be careful as some programming languages treat an empty or unset value as FALSE.
Example[edit]
In PHP:
<?php
$myFirstVar = True; // assign the value TRUE to $myFirstVar
$myOtherVar = False; // assign the value FALSE to $myOtherVar
?>
In Python:
myFirstVar = True
myOtherVar = False
In Javascript:
var myFirstVar = true;
var myOtherVar = false;
Do you understand this?[edit]
Standards[edit]
- Define the terms: variable, constant, operator, object.