DZone 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
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)




