码迷,mamicode.com
首页 > 其他好文 > 详细

Arguments

时间:2017-10-28 12:50:04      阅读:94      评论:0      收藏:0      [点我收藏+]

标签:har   charset   body   for   nts   type   tle   char   doctype   

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<script type="text/javascript">
function sum(){
var s=0;
for(var i=0;i<arguments.length;i++){
s+=arguments[i];
}
return s;
}
document.write("1+2=",sum(1,2));
document.write("<br />")
document.write("5+2+7=",sum(5,2,7));

</script>
</body>
</html>

 

Arguments

标签:har   charset   body   for   nts   type   tle   char   doctype   

原文地址:http://www.cnblogs.com/wxhhts/p/7746387.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!