1 Star 0 Fork 0

smallinsect / MyJS

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
对象属性未初始化.ts 522 Bytes
一键复制 编辑 原始数据 按行查看 历史
maichi 提交于 2021-04-21 20:25 . 未初始化的对象属性
/*
* @description:
* @version: 1.0.1
* @Author: xuqiulin
* @Date: 2021-04-21 20:19:10
* @LastEditors: Please set LastEditors
* @LastEditTime: 2021-04-21 20:22:21
*/
interface Animal {
name: string;
age: number;
egg?: number;
}
let animal: Animal = <Animal>{};
console.log('------------------------');
console.log(animal.name);
console.log('------------------------');
console.log(animal.age);
console.log('------------------------');
console.log(animal.egg);
console.log('------------------------');
1
https://gitee.com/smallinsect/MyJS.git
git@gitee.com:smallinsect/MyJS.git
smallinsect
MyJS
MyJS
master

搜索帮助