Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Bitwise Operation: Quickly Convert Binary Bit to Integer and vice versa using Javascript Shell (See related posts)

using JavaScript shell found at www.squarefree.com/shell/ , it's very easy to convert binary bit to integer and vice versa

convert integer to binary bit string
num = 1024
num.toString(2)


convert binary bit string to integer
parseInt('111', 2)

You need to create an account or log in to post comments to this site.


Click here to browse all 4858 code snippets

Related Posts