Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

You have nothing in your shopping cart yet.

Title: Javascripts notes
Description: introduction of Javascripts.

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


java script is a light weight programming language that can be inserted into HTML pages and can be
executed by all modern web pages
...

it is object based language but does not support inheritence and is case sensitive
...
e
...

and it is not related with java

java scripts can be put inside the and the section of an HTML page
...
write("hello world!");




PROGRAM 2





JAVASCRIPT COMMENTScomments can be added to explain the javascript or to make the code more readable
1
...
javascript multiline comments /*
...

you declare javascript variables with the var keyword
...
- var x;
var x=5;
var x="volvo";

PROGRAM 4





RULES FOR JAVASCRIPT VARIABLES-

1
...
no spaces
3
...
commas, fullstop)
4
...


5
...


TYPES OF VARIABLE1
...


a javascript function becomes LOCAL and can be only accessed within

you can have local variables with the same name in different functions, because the local
variables are only recognised by the function in which they are declared
...


2
...

global variables are destroyed when you close the page
...


ASSIGNING VALUES TO UNDECLARED JAVASCRIPT VARIABLESif you assign values to variables that have not yet been declared , the variables will automatically
be declared as global variables
Title: Javascripts notes
Description: introduction of Javascripts.