Use number variable directly in if statement in JavaScript
Description
The following code shows how to use number variable directly in if statement.
Example
<!-- ww w . j a va 2 s .c o m-->
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
var i = 3;
if (i){
document.writeln("true");
}
else {
document.writeln("false");
}
</script>
</head>
<body>
</body>
</html>
The code above generates the following result.
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...
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...