javascript

JavaScript Syntax

Syntax of Javascript means the set of rules that needs to be followed while writing javascript code. As you learn JavaScript you would be  using terms like script, variables,functions, comments etc. In this section, i will give you a brief intro about these. Javascript code can be implimented anywhere inside …

JavaScript Syntax Read More »

JavaScript Comments

Javascript comments can be used to make the code more readable and more explained. Javascript offers single line comment as well as multi line comments. Comments in Javascript are ignored by the JavaScript Engine and are not executed at all. Single line comment – If we write any line starting …

JavaScript Comments Read More »

JavaScript Variables

Like any other programming language, variables in JavaScript are containers for storing different types of values. A variable can be thought of as a container. We can store data into a variable and can refer the data with the help of that variable later. Variable declaration Before using a variable, we …

JavaScript Variables Read More »