摘要: 1、数字算术的方法(Math) Math.pow(2,53) // 2的53次幂 Math.round(.6) // 四舍五入 Math.ceil(.6) // 向上取整 Math.floor(.6) // 向下取整 Math.abs(-5) // 绝对值 Math.max(x,y,z) // 返回 阅读全文
posted @ 2020-02-14 21:57 kimingw 阅读(120) 评论(0) 推荐(0)
摘要: 1、javaScript程序是用Unicode字符集编写的 2、javaScript中的原始类型包括数字、字符串和布尔值 3、javaScript中特殊类型null和undefined 4、javeScript除了数字、字符串、布尔值、null和undefined就是对象 5、对象(object)是 阅读全文
posted @ 2020-02-14 02:38 kimingw 阅读(101) 评论(0) 推荐(0)