bit array

A bit array is an array data structure that compactly stores bits. 
Go/JavaScript do not have bit array.
In Kotlin, you can use Java bitset.
Python does not have a standard bit array, but it has a module bitarray.
Rust does not have a standard bit array, instead, you can use bit-vec.