const – javascript

const is a javascript keyword used to declare variable, whose value is assigned during declaration and cannot be changed or…

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…

Iframes – HTML

Display a webpage inside a webpage. Syntax iframe attributes height sets height of iframe. width sets width of iframe. src…