Category: javascript

var – JavaScript

var is a javascript keyword, used to declare a variable. variable declared with var has functionedscope or global scope. Before…

Javascript Identifiers

In javascript, variables have meaningful names, these names are called identifiers. Identifiers are unique, it means once a variable name…

Javascript comments

Comments are used for following in javascript Javascript comments are of two types: Single line comment Two forward slashes without…