Category JavaScript Tutorial

Free Online JavaScript Tutorials & Courses. Check out the fundamentals and uses of javascript. Not only then you can find out the purpose of javascript & validation here.

Here are the best resources and tutorials to learn.

Errors – JavaScript Basics

try statement allows to analyse block of code for errors. catch statement allows to handle error. throw statement allows to create custom errors. finally statement allows to carry out code, after try & catch, regardless of result. Try and Catch JS statements try and catch come in pairs.…

Statements – JavaScript Basics

Statements are “instructions” to be “executed” by Web Browser. JS Statement This is a simple statement to write “Code Projects” inside Html element. <!DOCTYPE html> <html> <body> <h1>JS Statements</h1> <p>JS statements are executed by browser.</p> <p id=”ex”></p> <script> document.getElementById(“ex”).innerHTML =…

Syntax – JavaScript Basics

It is the set of the rules how programs are constructed. JS Programs : A computer program is list of “instructions” to be “executed” by computer. These program instructions are called statements in programming language. JS Statements are separated by semicolons; <!DOCTYPE html> <html>…

Output – JavaScript Basics

Output can be displayed in different ways using JS. Using window.alert( ) This function is used to display a message alert. <!DOCTYPE html> <html> <body> <h1>Code Projects</h1> <p>Projects, Tutorials and More </p> <script> window.alert(“ALERT”); </script> </body> </html> Output : Using…

Where To – JavaScript Basics

<script> Tag : JavaScript code must be located between opening and closing script tags ; <script> and </script> tags. <!DOCTYPE html> <html> <body> <h1>JavaScript Basics</h1> <p id=”ex”></p> <script> document.getElementById(“ex”).innerHTML = “Hello World! This Is My First JavaScript”; </script> </body> </html> Output…