Datatypes in Javascript 1. Comments There are two types of comments in JavaScript. They are as follows: 1. Single line comment (use // for single line ) 2. Multiline comment (use /* */ for single line ) 2. Data Types in JavaScript - A data type in JavaScript specifies the specific type of value that a variable can store. In other words, a data type is simply a “kind” of value (i.e. data) stored in a variable. - Internally, a variable represents a memory location where data stores. Data is information that we store in computer programs. What is Dynamic Data Types in JavaScript ? JavaScript is a dynamic and loosely typed, or duck typed language.The value we assign to the variable determines its data type. JavaScript automatically handles different types of values and automatically converts values from one type to another. var FirstName = “Shubh” // Holding string. var AccountNumber = 123499 // Holding number. Types of Data types in JavaScript A list of all data typ...