Javascript

Definition: What is Javascript?

Javascript is an interpreted language with a C like syntax. While many people brush the language off as nothing more than a browser scripting language, it actually supports many advanced concepts such as object-oriented-programing, recursion, lambda, and closures.

JavaScript allows you to create ‘dynamic, interactive’ web pages: web pages that do things in response to what your readers do, without having a separate page for each possible response. In this tutorial, I’m going to cover some of the very basics of using JavaScript in your web pages.

JavaScript Event

JavaScript Tutorial for Beginners –Learn JavaScript Online

JavaScript Tutorial provides the basic and advanced concepts of JavaScript and this Tutorial is designed for beginners and professionals to learn JavaScript Tutorial Online. JavaScript is an interpreted language with a C like syntax. While many people brush the language … Read More

JavaScript Event

JavaScript Comments with Examples

Javascript supports two types of comments (JavaScript Comments). Double-slashes (//) tell javascript to ignore everything to the end of the line. You will see them used most often to describe what is happening on a particular line.

var x=5; // 
Read More
JavaScript Event

JavaScript Output Writeln, alert and getElementById

JavaScript Output (writeln) : One of the most important things to do when learning a new language is to master basic input and output which is why hello world has become almost a cliché in programming textbooks. For JavaScript you … Read More

JavaScript Event

Explain In-line JavaScript and External JavaScript

What is In-line JavaScript?

Everyone wants to know In-line JavaScript and External JavaScript how it works. In-line JavaScript to define a JavaScript block in your web page, simply use the following block of HTML. You can place these script … Read More