Closed jinzesudawei closed 1 year ago
章节: https://wangdoc.com/typescript/types#boolean-%E7%B1%BB%E5%9E%8B 问题: 变量x和y就属于 boolean 类型。 修正: 常量x和y就属于 boolean 类型。
后面也有类似问题,如
章节: https://wangdoc.com/typescript/types#bigint-%E7%B1%BB%E5%9E%8B 问题: 上面示例中,变量x和y就属于 bigint 类型。 修正: 上面示例中,常量x和y就属于 bigint 类型。
看了下官方文档,conost 声明的是叫变量。 let and const are two relatively new concepts for variable declarations in JavaScript. https://www.typescriptlang.org/docs/handbook/variable-declarations.html
章节: https://wangdoc.com/typescript/types#boolean-%E7%B1%BB%E5%9E%8B 问题: 变量x和y就属于 boolean 类型。 修正: 常量x和y就属于 boolean 类型。
后面也有类似问题,如
章节: https://wangdoc.com/typescript/types#bigint-%E7%B1%BB%E5%9E%8B 问题: 上面示例中,变量x和y就属于 bigint 类型。 修正: 上面示例中,常量x和y就属于 bigint 类型。