JAVASCRIPT

Javascript is a light weight,client side scripting language.It was developed by Netscape to use within HTML pages.It is ease to use and its implemented in the header part of the page.It allows us to perform validations on form,add special effects,allows animation on objects,allows to perform calculations and many more.

Syntax :-

Javascript is very ease to learn and implement.

<script language = "Javascript" type = "text/javascript">
<!-- Our code -- !>

document.Write("Css zilla");
</script>

The OUTPUT for the above line will be Css zilla.

Here the above line contains script tag.It contains two attributes.One is 'Javascript' which specifies the scripting language which will be used.Here it is Javascript and other is type which the script language which we will use will be Javascript.

Comments

Popular posts from this blog