<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script type="text/javascript">
function Compute(){
var args = arguments,
res;
this.plus = function(){
res = 0;
loop(arguments,'add', res);
}
this.times = function(){
res = 1;
loop(arguments,'mul', res);
}
function loop(args,method, res){
for(var i = 0; i < args.length; i++){
var item = args[i];
if(method === 'add'){
res += item;
}else if(method === 'mul'){
res *= item;
}
}
console.log(res);
}
}
var Compute = new Compute();
Compute.plus(2,4,6);
Compute.times(3,5,7);
</script>
</body>
</html>
前端对象:两数加和乘
最新推荐文章于 2024-08-26 22:55:43 发布
该博客演示了一个JavaScript计算函数的实现,包括加法和乘法操作。通过`Compute`对象,可以调用`plus`和`times`方法对传入的参数进行求和或求积,并在控制台输出结果。示例中分别对一组数字进行了加法和乘法运算。
摘要由CSDN通过智能技术生成