Compare number to boolean in if statement in JavaScript

Description

The following code shows how to compare number to boolean in if statement.

Example


<!--from w  ww .j  a  va2 s  . c om-->
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">

var temp = 1;

if(temp == true){
document.write("Statement is true");
} else{
document.write("Statement is false");
}

</script>
</head>
<body>
</body>
</html>

Click to view the demo

The code above generates the following result.

Compare number to boolean in if statement in JavaScript
Home »
  Javascript Tutorial »
    Statement »
      If
Javascript Tutorial If
Compare number to boolean in if statement i...
Create an if else ladder in JavaScript
Nested if else statement in JavaScript
Nested if else statement with parentheses i...
Use Not Equal operator in if statement in J...
Use if else statement to check number range...
Use if/else to check the returning value fr...
Use if statement to compare the numbers in ...
Use if statement to compare the value again...
Use number variable directly in if statemen...
Use typeof operator in if statement in Java...