Is there any smart inliner/one-liner (ES6) in transforming a number (integer) into a string array which got the number's bit position of its binary powers (pow(2,x))? i.e.
13 => ["1","3","4"] // (pow(2,1) + pow(2,3) + pow(2,4)) = 13
Is there any smart inliner/one-liner (ES6) in transforming a number (integer) into a string array which got the number's bit position of its binary powers (pow(2,x))? i.e.
13 => ["1","3","4"] // (pow(2,1) + pow(2,3) + pow(2,4)) = 13
Copyright © 2021 Jogjafile Inc.
If you actually want an array of the powers of 2 which will result in the number, then for 13, you'd want:
That is -
[0, 2, 3]
are the powers which result in 13..toString(2)
turns a number into its binary equivalent, so you can take the elements of that string which are 1s:Like all JS code, it's possible to squash into one line, but it'd be pretty silly - better to write clean and readable code without regard to line length: