const – javascript
const is a javascript keyword used to declare variable, whose value is assigned during declaration and cannot be changed or…
const is a javascript keyword used to declare variable, whose value is assigned during declaration and cannot be changed or…
let is a javascript keyword used to declare a variable, it is introduced by ECMAScript 2015(ES6) in 2015. Variable declared…
var is a javascript keyword, used to declare a variable. variable declared with var has functionedscope or global scope. Before…
In javascript, variables have meaningful names, these names are called identifiers. Identifiers are unique, it means once a variable name…
Strings are sequence of characters. In javascript a string can be placed inside double quotes and in single quotes as…
Scope specifies the accessibility of a variable in a program. Javascript variables have 3 scope Local scope A variable declared…
Javascript is loosely typed language, so a variable can be used without declaring its type. Javascript determines the data type…
JavaScript variable can hold different types of data like integer, float, character, string, function, To check what data currently a…
In JavaScript, Variable is use to store data and allows operations as per data types. Data in a variable can…
Display a webpage inside a webpage. Syntax iframe attributes height sets height of iframe. width sets width of iframe. src…