摘要: 遍历方法: let tpl = [1,12,8,5];let max = tpl[0];for(let item of tpl){ if(max < item) max = item }console.log(max); 使用apply方法: var ar... 阅读全文
posted @ 2019-09-06 11:37 格鲁特baby 阅读(139) 评论(0) 推荐(0) 编辑