String javascript
String is a sequence or series of characters can contain letter, digit or symbols enclosed in single quotes, double quotes…
String is a sequence or series of characters can contain letter, digit or symbols enclosed in single quotes, double quotes…
Boolean is a primitive data type only represents two values true or false, and mostly used with decision making (conditional…
null is a primitive data type represents an object with no value. Example
undefined is a primitive data type in javascript. When a variable is declared and not initialized or assigned a value,…
Number in javascript is any number either it is integer or floating number, is always a double precision 64 bit…
Data type in javascript, specifies the type of data a variable is going to store or hold, It is important…
Initializer in javascript, is a value assigned during declaration of a variable, using Automatic, var, let and const keyword. It…
Difference table of var, let and const keyword is created, to easily understand its use. var let const Initialization No…
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…