What are the different data types present in JavaScript?
To know the type of the value/variable, we can use the typeof operator
Primitive Types
String
A string is represented by the series of characters enclosed by double/single quotes
const name = "SnowBit"
const favLang = "JavaScript"
Integer
It rep...
h.dhairyashah.dev1 min read