Skip to content

Instantly share code, notes, and snippets.

@Protonk
Last active December 20, 2015 07:49
Show Gist options
  • Save Protonk/6096105 to your computer and use it in GitHub Desktop.
Save Protonk/6096105 to your computer and use it in GitHub Desktop.
For Jory
function intAdd(arr) {
var out;
out = arr.reduce(function(l, r) {
return l + r;
});
return out.toString(2);
}
intAdd([1,2,3])
// "110"
parseInt(intAdd([1,2,3]), 2)
// 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment