函数参数对象的考察
使用 arguments
http://www.nowcoder.com/questionTerminal/df84fa320cbe49d3b4a17516974b1136
function useArguments() { let args = Array.prototype.slice.call(arguments, 0) return args.reduce((a, b) => a + b) }
使用 arguments
http://www.nowcoder.com/questionTerminal/df84fa320cbe49d3b4a17516974b1136
function useArguments() { let args = Array.prototype.slice.call(arguments, 0) return args.reduce((a, b) => a + b) }
相关推荐