Skip to content

Instantly share code, notes, and snippets.

@tvalentius
Created June 16, 2018 13:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tvalentius/aa572dbe06ab9c1ecff2da8eec59a479 to your computer and use it in GitHub Desktop.
Save tvalentius/aa572dbe06ab9c1ecff2da8eec59a479 to your computer and use it in GitHub Desktop.
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