我只是想知道是否可以在JavaScript中编写函数而在声明括号中不包含任何参数,而是在内部使用它们。例如在下面的示例中,该函数将给我10,但是如果我想将参数号更改为5并要计算sumThem(1,2,3,4,5);这个功能应该给我15结果。
function sumThem() { //No parameters will be this line
//let result = some magic will be in these lines... result become sum of all parameters.
return result;
}
console.log(sumThem(1)); // should be 1
console.log(sumThem(1,2,3,4)); // should be 10
console.log(sumThem(1,2,3,4,5)); // should be 15