Friday 12 October 2012

71.JavaScript Statements


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>

Er Ratnesh Porwal
Software Engineer
www.AeroSoftCorp.com
www.AeroSoft.in
www.AeroSoft.co.in
www.AeroSoftseo.com
On Line Assistence    :
Gtalk                          :   ratnesh.aerosoft@gmail.com
Y! Messenger                   :   ratnesh.AeroSoft@yahoo.com
Rediff Bol                  ratnesh.AeroSoft@rediffmail.com


Best Study Materials JAVA,
Java Tutorials PDF,
Java SCJP Questions,
Java Material Free Download,
Gate Study Material Free,
Java Tutorial Download,
SCJP Materials
Core Java Programming Questio…
SCJP Certification  



  1. Accomodation - AeroSoftSEO

    commercial pilot school,sport pilot training,pilot training in usa,avionics instruments,flight school usa,airline pilot school,commercial flight training,aviation ...
  2. About us - AeroSoftSEO

    Best PHILIPPINES, Flight Schools, Pilot Training, Pilots, Flight Schools, Aircrew, Flight Training, Job Postings, Pilot Job Postings, Aviation, Aviation News, Pilot ...

No comments:

Post a Comment