How many data types are there in JS, and what are they?

后端 未结 5 2058
难免孤独
难免孤独 2021-01-02 16:48

I started reading a book, Javascript for Kids. In it the author states that there are three data types:

  • numbers
  • strings
  • booleans
5条回答
  •  耶瑟儿~
    2021-01-02 17:24

    Check the following link

    • Six data types that are primitives:

      1.Boolean

      2.Null

      3.Undefined

      4.Number

      5.String

      6.Symbol (new in ECMAScript 6)

    • and Object

提交回复
热议问题