2018-05-21 10:21:54 +02:00

4 lines
96 B
JavaScript

export async function two(...args) {
return args.reduce((total, value) => total + value, 0);
}