Learn JavaScript Simply / PDF


Learn JavaScript Simply / PDF

Learn JavaScript Simply / PDF




Sample of the PDF document 







JavaScript is a scripting language produced by Netscape for use within HTML Web pages.

JavaScript is loosely based on Java and it is built into all the major modern browsers. This tutorial gives an initial push to start you with Javascript.


What is JavaScript ?

JavaScript is:

  •  JavaScript is a lightweight, interpreted programming language
  •  Designed for creating network-centric applications
  •  Complementary to and integrated with Java
  •  Complementary to and integrated with HTML
  •  Open and cross-platform

JavaScript Syntax:

A JavaScript consists of JavaScript statements that are placed within the HTML tags in a web page.
You can place the

The script tag takes two important attributes:
  •  language: This attribute specifies what scripting language you are using. Typically, its value will be javascript. Although recent versions of HTML (and XHTML, its successor) have phased out the use of this attribute.
  •  type: This attribute is what is now recommended to indicate the scripting language in use and its value should be set to "text/javascript".
So your JavaScript segment will look like:

Your First JavaScript Script:
Let us write our class example to print out "Hello World".


Above code will display following result: Hello World!

Whitespace and Line Breaks:

JavaScript ignores spaces, tabs, and newlines that appear in JavaScript programs.
Because you can use spaces, tabs, and newlines freely in your program so you are free to format and indent your programs in a neat and consistent way that makes the code easy to read and understand.

Semicolons are Optional:

Simple statements in JavaScript are generally followed by a semicolon character, just as they are in C, C++, and Java. JavaScript, however, allows you to omit this semicolon if your statements are each placed on a separate line. For example, the following code could be written without semicolons

 
But when formatted in a single line as follows, the semicolons are required:

Note: It is a good programming practice to use semicolons.

Case Sensitivity:
JavaScript is a case-sensitive language. This means that language keywords, variables, function names, and any other identifiers must always be typed with a consistent capitalization of letters.
So identifiers Time, TIme and TIME will have different meanings in JavaScript.
NOTE: Care should be taken while writing your variable and function names in JavaScript......




Download Learn JavaScript Simply / PDF









Learn JavaScript Simply / PDF



0 commentaires: