javascript的数据类型:
使用typeof来判断数据类型console.log(typeof '字符串')//输出 string
console.log(typeof 123)//输出 number
console.log(typ
2022-04-24