摘要: 1、一串数中最大、最小值Math.max(10, 5, 2, 9); // 10Math.min(10, 5, 2, 9); // 22、数组中的最大、最小值Math.max.apply(null, [10, 5, 2, 9]); // 10Math.min.apply(null, ... 阅读全文
posted @ 2016-11-29 16:42 ning0_o 阅读(104) 评论(0) 推荐(0) 编辑