Typescript中的数字是什么[重复]

gj3fmq9x  于 2023-11-20  发布在  TypeScript
关注(0)|答案(1)|浏览(128)

此问题在此处已有答案

What's the meaning of typeof Array[number] in Typescript?(4个答案)
9天前关闭
如果我必须得到属于numeric键的值类型的并集,那么我们必须使用number
TS PLAYGROUND

const animals = ['dog', 'cat', 'hen'] as const
type Animal = typeof animals[number] // type Animal = "dog" | "cat" | "hen"

字符串
但这个number到底是什么,typeconstantkeyword还是什么?

jk9hmnmh

jk9hmnmh1#

number是一种表示JavaScript在TypeScript中浮动的类型。
TS手册中的更多信息

相关问题