摘要:
先看两端代码 let str = "hello" const str1:string = "hello" const str2 = "hello" 在上述代码中用let声明的变量是字符类型的 而用const 没有指定类型的话,其是字面量类型,不能随意进行变更。 阅读全文
摘要:
接口类型 作用:给对象约束属性和方法 基础语法: interface 接口名 { 属性名:类型 } 接口名称推荐以I开头 接口声明后,直接使用接口名称作为变量类型 interface person { name: string age: number gender: string sayHi: () 阅读全文
摘要:
数组的定义 普通定义: let arr: number[] = [4, 6, 7, 9]; //需求:希望数组里面可以存数字或者字符串 联合数据类型: //联合数据类型:|的优先级比较低,需要用()包裹提升优先级 //一旦使用联合查询,说明arr里面的值既可能是number也可能是string,所以 阅读全文