关于 ts 的变量类型
来源:8-13 instanceof原理是什么,请写代码表示
mofiter
2022-03-20
老师好,instanceof 方法的第二个参数是构造函数,是大写,比如 String,Number,那为什么 ts 中变量类型的声明是小写呢,或者说有些是小写有些是大写,比如 function test(fn: Function, n: number) {…} 中,number 是小写,而 Function 又是大写,感觉分不清楚,在 typescript 文档中没有看到对应的规范
写回答
1回答
-
对于值类型(string number boolean symbol 等)或 object ,类型都是小写。
其他的都是大写,如 Function Array<xxx> Map<xx, yy> 等。
00
相似问题