JavaScript Statements
In this article you learn the basics of JavaScript and create your first JavaScript program.
JavaScript Statement
The JavaScript language supported Two type Condition.
1.if statement
2.Function
if Statement
The if statement is used to make decisions in JavaScript. Boolean operators are also
used in along with the if statement. The if statement is the most used features of JavaScript. It is basically the same in JavaScript as it is in other programming languages.
Example
| <HTML> <HEAD> </HEAD> <SCRIPT language="JavaScript"> <!-- var num = 10 if(num == 10) { document.write("<B>Statement!</B><BR>") } //--></SCRIPT> my program successfully completed </BODY> </HTML> |
Function
The function keyword identifies as a function. The parameters in the parenthesis ( ) provide a means of passing values to the function. There can be as many parameters separated by commas as you need.
This is perfectly ok to have a function with no parameters. These parameters are variables which are used by the JavaScript statements inside the curly braces { }. The variable keyword is not needed to declare the parameters in a function as variables because they are automatically declared and initialized when the function is called. The function can return a value by using the return keyword.
Example
| <HTML> <HEAD> </HEAD> <script languane="JavaScript"> function prod(a,b) { var x=a*b return x; } var mul=prod(2,5); document.write("multipication:"+mul); </script> </BODY> </HTML> |
Conditional JavaScript if-else Statement
The JavaScript Conditional Statement used to different actions and
used to based on different conditions. you want to execute some code if a condition is true and another code
the condition is not true, use the if....else statement.
Example
| <HTML> <HEAD> </HEAD> script type="text/javascript"> var a = new Date() var time = a.getHours() if (time < 20) { document.write("Good morning!") } else { document.write("Good day!") } </script> </BODY> </HTML> |
Tutorials
- JavaScript method doScroll()
- Popup Window Example in JavaScript
- JavaScript method deleteRow()
- JavaScript Variables and Data types
- Java Script Code of Calendar and Date Picker or Popup Calendar
- JavaScript - JavaScript Tutorial
- Looping In Java Script
- What is JavaScript? - Definition
- Conditional Examples(if - else- switch case) in JavaScript
- Classes-Objects in JavaScript
- String Number Operations in JavaScript
- Conditions In Java Script
- JavaScript - JavaScript Tutorial
- JavaScript Object Oriented Feature
- Form Validation using Regular Expressions is JavaScript
- Navigation with Combo box and Java Script
- Simple Calculator Application In Java Script
- JavaScript Combo Box Validation
- JavaScript createPopup method
- JavaScript appendChild method
- JavaScript add method
- JavaScript addImport example
- JavaScript appendData method
- JavaScript applyElement method Example
- JavaScript blink method
- JavaScript bold method
- JavaScript clear method
- JavaScript clearTimeOut method
- JavaScript click method
- JavaScript cloneNode example
- JavaScript createAttribute method
- JavaScript createCaption method
- JavaScript createComment method
- JavaScript createEventObject method
- JavaScript createTFoot method
- JavaScript createTHead method
- JavaScript deleteCaption method
- JavaScript deleteTFoot method
- JavaScript deleteTHead method
- JavaScript dragDrop method


