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