function useArguments() { return Array.prototype.slice.call(arguments).reduce((pre,cur) => pre + cur) }
function useArguments() { return Array.prototype.slice.call(arguments).reduce((cur,next) => { return cur+next },0) }
function useArguments() { var sum = 0; for(var i = 0; i < arguments.length; i++) { sum += arguments[i]; } return sum; } function useArguments() { return Array.prototype.slice.call(arguments).reduce(function(prev, cur) { return prev + cur; }); }
function useArguments() {
return eval(Array.prototype.join.call(arguments, '+'))
}