Category: javascript

let – javascript

let is a javascript keyword used to declare a variable, it is introduced by ECMAScript 2015(ES6) in 2015. Variable declared…

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…