Introduction to JavaScript

Coding (Javascript)


Briefly explanation about the story and the basics of JavaScript
 
/img/blog/introduction-to-javascript.jpg

 

In computing JavaScript is a scripting language oriented to objects and events, commonly used in the creation of Web programming, in websites and web applications ,

Dynamic and interactive effects via function invoked by events triggered in various modes by the user on the web page in use ( mouse , keyboard , page load etc ... ) .

 

 

The change of name from LiveScript to JavaScript occurred at the time when Netscape was including support for Java technology in its Netscape Navigator.

The choice of name proved a source of great confusion.

There is no real relationship between Java and JavaScript; their similarities are mostly in syntax (derived in both cases from the C language); their semantics are quite different, and in particular their object models are unrelated and are largely incompatible.

 

 

USE

 

 

Unlike other languages, such as C or C ++, which allow writing completely stand-alone programs, JavaScript is used primarily as a scripting language, integrated, then, within another program.

The typical example,a host program to a script JavaScript is the browser. A browser typically incorporates a JavaScript interpreter; when visited a web page that contains the code of a JavaScript script, the latter is brought into primary memory and executed by the content in the browser.

 

 

The interfaces that enable javascript to establish relationships with browsers are called DOM (Document Object Model). Many web sites use client-side JavaScript technology to create powerful dynamic web applications.

 

 

A major use of JavaScript in the Web is to write small functions integrated into HTML pages that interact with the browser DOM to perform certain actions not possible with static HTML only: check the values ​​in the input fields, hide or display certain elements , etc.

 

 

BASIC EXAMPLES

 

 

the example below open a new window whith the string  Hello world written in it

<script>

   alert('Hello world');

</script>

 

 

The example below write the string Hello world inside the browser

 

 

<script>

   document.write('Hello world');

</script>

 

 

 
 
If you like this content and you are hungry for some more join the Facebook's community in which we share info and news just like this one!

Other posts that might interest you

Utility (Antivirus) Dec 13, 2017

Avast

Stay Protected See details
Utility (Internet) Dec 13, 2017

DNS server

See details
Utility (Software) Dec 5, 2017

History of Adobe Systems

See details
Get my free books' review to improve your skill now!
I'll do myself