我想在下面检查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)类型?