摘要: 数字分隔符 为了提高数字的可读性,您可以使用下划线作为分隔符: const numbers = 1_2_3_4_5 console.log(numbers) // 12345 字符串转数字 弱类型转换 const num = '234’ console.log(typeof +num) 强制类型转换 阅读全文
posted @ 2021-12-27 14:17 Song0916 阅读(37) 评论(0) 推荐(0) 编辑