DEV Community

Discussion on: [Challenge] Add numbers without (+-*/)

Collapse
 
loucyx profile image
Lou Cyx • Edited

Here's a really nasty one:

const add = (...args) => args.flatMap(length => Array.from({ length })).length;
Enter fullscreen mode Exit fullscreen mode

Cheers!

PS: Never do this. Is disgusting and it doesn't even add float numbers

Collapse
 
nombrekeff profile image
Keff

It kinda is nasty 🤣 I like it though