H I O X INDIA
Javascript Tutorial
 HOME  ||  Scripts  ||  Purchase  ||  Tutorials  ||  Images  ||  Tools  ||  Templates 
  :-)  Send Page   :-)   Feedback   :-)   Register   :-)   Links   :-)   Support   :-)
Español Français 中文 Deutsch Portuguese Japanese தமிழ்
 Forums   Hosting   Internet Stats   Easy Calculation   FUN Games 

Java-Script Tutorial
Introduction
Variables
Operators
Statements
Loops
Functions
Objects
Arrays
Browser Objects
Form DOM
Ask Your Doubts
More about Javascript
Feedback



Boolean Type & Values


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





        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.

privacy policy     license     sitemap
© 2004-2010 HIOX INDIA

Other Links