Posts

JavaScript Event

JavaScript Interview Questions and Answers

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. We can … 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