JavaScript Tutorial


Total available pages count: 33
Subject - JavaScript Frameworks

Values of Variables

JavaScript recognizes the following types of values:

  1. Numbers, such as 82 or 3.14159
  2. Logical (Boolean) values, either true or false
  3. Strings, such as "Slightbook!"
  4. null, a special keyword which refers to nothing

This relatively small set of types of values, or data types, enables you to perform useful functions with your applications. There is no explicit distinction between integer and real-valued numbers.

This relatively small set of types of values, or data types, enables you to perform useful functions with your applications. There is no explicit distinction between integer and real-valued numbers.



Comments