题解 | #使用 arguments#
使用 arguments
http://www.nowcoder.com/practice/df84fa320cbe49d3b4a17516974b1136
function useArguments() {
var total = 0
var a = [...arguments]
a.forEach(e=>{
total+=e
})
return total
}
使用 arguments
http://www.nowcoder.com/practice/df84fa320cbe49d3b4a17516974b1136
function useArguments() {
var total = 0
var a = [...arguments]
a.forEach(e=>{
total+=e
})
return total
}
相关推荐