Symbols javascript
Symbol is a primitive data type, introduced in ES6 version, which creates an immutable and unique symbol. It is used…
Symbol is a primitive data type, introduced in ES6 version, which creates an immutable and unique symbol. It is used…
BigInt is javascript primitive data type. Number data type is not able to hold large or big numbers because of…
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…