Skip to content

Instantly share code, notes, and snippets.

@caglarorhan
Created June 24, 2022 02:31
Show Gist options
  • Save caglarorhan/d8424a54b2a61cba41a9d8b8f8f2acef to your computer and use it in GitHub Desktop.
Save caglarorhan/d8424a54b2a61cba41a9d8b8f8f2acef to your computer and use it in GitHub Desktop.
Converts decimal to binary
function dec2bin(dec){
if(dec<2){
return dec;
}
return dec2bin(((dec-(dec%2))/2)).toString()+(dec%2).toString();
}
console.log(dec2bin(642313587))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment