function useArguments() { return [...arguments].reduce((total, cur) => total += cur, 0) }
function useArguments() { let arr=[...arguments] return arr.reduce((x,y)=>x+y) }
function useArguments() { return Array.from(arguments).reduce((total,curr)=>{ return total + curr },0) }