//可以利用argument,配合reduce方法来解决
function useArguments(...argument) {
    return argument.reduce((total,i)=>total+=i)
}