摘要: # math对象 var n = -5; n2 = Math.abs(n); //绝对值 console.log(n2); Math.floor(5.9); //直接往下去,这就是5, Math.min(1,2); Math.max(1,2); Math.pow(10,2); //返回x的y次幂 M 阅读全文
posted @ 2023-04-06 09:12 技术改变命运Andy 阅读(7) 评论(0) 推荐(0) 编辑