Created
June 16, 2018 13:08
-
-
Save tvalentius/aa572dbe06ab9c1ecff2da8eec59a479 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var bilanganDesimal = [1,2,3,4,5]; | |
var bilanganBiner = bilanganDesimal.map( (element) => { | |
return element.toString(2); | |
}) | |
console.log(bilanganBiner); // ["1", "10", "11", "100", "101"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment