

In this article you will learn about the JavaScript functions.
What is JavaScript Function?
Java script Function is nothing but it is a reusable code-block that is execute when the function is called. Function is defined in the head section of the code. The syntax of JavaScript function is as follows:
function fname(prameter1,parameter2, …)
{
JavaScript code 1
JavaScript [...]
August 20, 2008 | Posted in
Javascript Tutorials |
Read More »

In this article you learn the basics of JavaScript and create your first JavaScript program.
What is JavaScript loop?
The JavaScript loops used to execute the same block or code a specified number of times and while a specified condition. JavaScript loops Very often write code, you want the same block of code to run over and [...]
August 19, 2008 | Posted in
Javascript Tutorials |
Read More »

In this article you will learn the basics of JavaScript conditions and create your conditional examples in JavaScript .
About Conditional Statement
First of all we write the code after that we want to perform the different actions for different decisions. We can use conditional statements in our code. Conditional statements in JavaScript are used to perform [...]
August 19, 2008 | Posted in
Javascript Tutorials |
Read More »

In this article you learn the basics of JavaScript and create your first JavaScript program.
What is String Number Operation?
The JavaScript String is a loosely type language. This is not mean that it has no data types that the value of a variable or a JavaScript object property does not need to have a particular type [...]
August 19, 2008 | Posted in
Javascript Tutorials |
Read More »

In this article you will learn the basics of JavaScript Variables and Data types.
JavaScript Variables
.Every piece of data is known as a value. When a value is referred in a statement, it is called a literal value. For the same reason people are identified by names as opposed to “human” or “person”, literal values can [...]
August 19, 2008 | Posted in
Javascript Tutorials |
Read More »