技术栈

ts变量定义

志飞
1 年前
typescript·ts变量定义·ts运算符·ts语句类型·ts函数定义
TypeScript学习(三):变量定义,运算符,语句,函数//1.变量定义,var和let的区别var t1="";var t1="123"let t2=123;