

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is if statement in JavaScript?
The if statement is the fundamental control statement that allows JavaScript to make decisions and execute statements conditionally.
Syntax
The syntax for a basic if statement is as follows −
if(expression){ Statement(s)to be executed if expression is true }
Here a JavaScript expression is evaluated. If the resulting value is true, the given statement(s) are executed. If the expression is false, then no statement would be not executed. Most of the times, you will use comparison operators while making decisions.
Example
You can try to run the following to learn how to work with if statement in JavaScript −
<html> <body> <script> var age = 25; if( age > 18 ){ document.write("Eligible to vote!"); } </script> <p>Set the variable to different value and then try...</p> </body> </html>
- Related Questions & Answers
- What is if...else if... statement in JavaScript?
- What is the if...else statement in JavaScript?
- What is break statement in JavaScript?
- What is continue statement in JavaScript?
- What is Switch...case statement in JavaScript?
- What is while loop statement in JavaScript?
- What is for loop statement in JavaScript?
- What is a block statement in JavaScript?
- What is correct syntax of Python if statement?
- What is for...in loop statement in JavaScript?
- What is do...while loop statement in JavaScript?
- What is basic syntax of Python if...else statement?
- What is for each...in a statement in JavaScript?
- What is the role of throw statement in JavaScript?
- What is the syntax of Python if...elif...else statement?
Advertisements