function useArguments() { let args = Array.prototype.slice.call(arguments, 0) return args.reduce((a, b) => a + b) }
Tim的资源站