JavaScript Tutorial





Español Français 中文 Deutsch Portuguese Japanese nederlands
   
 
Java-Script Tutorial
Introduction Introduction
Variables Variables
Operators Operators
Statements Statements
Loops Loops
Functions Functions
Objects Objects
Arrays Arrays
Cookies JS Cookies
Browser Objects Browser Objects
Form DOM Form DOM
Style Objects DOM Style Objects
Forums Ask Your Doubts
Scraps More about Javascript
Feedback Feedback
 




Boolean Data Type & Values


Tutorials »Javascript »

Topic

Using boolean variable (true or false) in javascript?



Explanation

Boolean Data Type- E.g: true
It can have logical values true or false.
Variable type Boolean should not have any quotes.

i.e. "true" is not equal to true, "true" will be considered as a string.

var a = true;
var b = false;

Boolean variable values are mostly used along with "if", "if else" statements and "while" loops.
Example Code:
<script language="javascript">
var a = true;
if(a == true)
{
document.write("this is true");
}
</script>


Result:
this is true





A Note
Javascript (JS) is one of the most used languages in the world. Some times spelled as Java Script. Hope you enjoy this tutorial. Do send your feedback or suggestions on this javascript or java script tutorial. This is a copyright content.

Other Links

web hosting