Which data type is NOT available in JavaScript?

  • Symbol
  • Float
  • String
  • Array
JavaScript supports a wide range of data types, including numbers, strings, symbols, and arrays. However, "Float" is not a distinct data type in JavaScript; instead, it uses the "number" data type to represent both integers and floating-point numbers. Symbols are used for creating unique identifiers, strings store text, and arrays are used to store collections of values.
Add your answer
Loading...

Leave a comment

Your email address will not be published. Required fields are marked *