标签:ret char arguments charset scale tle 等于 utf-8 传参
1 <html lang="en"> 2 <head> 3 <meta charset="UTF-8"> 4 <meta name="viewport" content="width=device-width, initial-scale=1.0"> 5 <meta http-equiv="X-UA-Compatible" content="ie=edge"> 6 <title>可变传参</title> 7 </head> 8 <body> 9 <script> 10 // 可变传参 11 /*function clac(){ 12 // 利用arguments来传参 13 list = arguments.length; 14 //如果计算和 15 var sum=0; 16 //不能放等于 17 for(var i=0;i<list;i++){ 18 sum+=arguments[i] 19 } 20 return sum; 21 } 22 console.log(clac(1,3,5))*/ 23 // 可变传参 比较最大值 24 // function clac(){ 25 // var max=0; 26 // list =arguments.length 27 // for(var i=0;i<=list;i++){ 28 // if(arguments[i]>=max){ 29 // max =arguments[i] 30 // } 31 // } 32 // return max 33 34 // } 35 // document.write(clac(4,6,2,7,3)) 36 //可变传参 37 function Calc(){ 38 parsNum=arguments.length; 39 var max =0; 40 for(var i=0;i<parsNum-1;i++){ 41 if(arguments[i]>max){ 42 max=arguments[i] 43 } 44 } 45 return max 46 47 } 48 console.log(Calc(6,8,9,3,2,5)) 49 50 </script> 51 </body> 52 </html>
标签:ret char arguments charset scale tle 等于 utf-8 传参
原文地址:https://www.cnblogs.com/yuanxiangguang/p/11109011.html