Skip to content
Advertisement

How do I create bit array in Javascript?

What is the best way of implementing a bit array in JavaScript?

Advertisement

Answer

Here’s one I whipped up:

UPDATE – something about this class had been bothering me all day – it wasn’t size based – creating a BitArray with N slots/bits was a two step operation – instantiate, resize. Updated the class to be size based with an optional second paramter for populating the size based instance with either array values or a base 10 numeric value.

(Fiddle with it here)

JavaScript

CREDIT TO @Daniel Baulig for asking for the refactor from quick and dirty to prototype based.

User contributions licensed under: CC BY-SA
2 People found this is helpful
Advertisement