# Previously
const digit = 100000;
// 怎么获取 digit 的长度呢?
digit.length;
1
2
3
2
3
# 定义 Typescript in 关键字
as
用来手动指定一个值的类型(类型断言 或 类型保护)。换句话来说,就是你比编译器更了解这个变量的类型是什么。
# 使用
const someValue: any = "this is a string";
const strLength: number = (someValue as string).length;
1
2
2
# 快来耍耍啊
# 🌰🌰
// template
1
# 游乐场
# 参考答案
// answer
1
# 参考资料
← Typescript 泛型 is →