如何检查此对象的类型?

时间:2019-10-27 03:50:24

标签: javascript typescript types

我想在下面检查obj的类型。

第一季度。

const arr = ["a", "b", "c"]
is actually
arr = {
  0: "a",
  1: "b",
  2: "c"

}

这对吗?

Q2。 我的对象是

const myObjects = {
  "1111": {
    isField: true,
    mySet: ["one", "two"] // this is Set
  },
  "2222": {
    isField: false,
    mySet: ["one"] // this is Set
  },
}

arr(Q1)的类型是打字稿中的数组。 那么,什么是myObjects(Q2)类型?

1 个答案:

答案 0 :(得分:-1)

您可以使用typeof运算符来确定javascript中任何内容的类型。

typeof myObjects将成为“对象”

Documentation