var value = $scope.value;
for (var i = 7; i > -1; i--) {
Byte[i] = value & 1;
value = value >> 1;
}
Ale úplně nejjednodušší by bylo trochu si pohrát s tímhle:Byte = $scope.value.toString(2);
var value = $scope.value;
for (var i = 7; i > -1; i--) {
Byte[i] = value & 1;
value = value >> 1;
}
Ale úplně nejjednodušší by bylo trochu si pohrát s tímhle:Byte = $scope.value.toString(2);