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

About this user

kai http://www.kai-mai.com

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

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)
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS