Javascript data types

Introduction

There are six simple data types in Javascript:

  • undefined
  • null
  • Boolean
  • Number
  • String
  • Symbol

There is one complex data type called Object.

Javascript Object is an unordered list of name-value pairs.




PreviousNext

Related