04 2020 档案

摘要:function mymin(num1) { if (arguments.length == 0) { // 没有参数 return Infinity; } else if (arguments.length == 1) { // 一个参数 return Number(num1); } else { 阅读全文
posted @ 2020-04-04 16:59 没有茅台喝啤酒也行 阅读(441) 评论(0) 推荐(0)