blingboot

Results 1 comments of blingboot

```js function add(...args) { if(args.length === 3) return args.reduce((a,b) => a+b, 0) return add.bind(null, ...args) } ```