Question: In JavaScript create a method called binaryToCharacter that converts an 8-bit binary String to its character. Print an error message if the length is not
In JavaScript create a method called binaryToCharacter that converts an 8-bit binary String to its character. Print an error message if the length is not 8.
To do this
-Declare a variable result of type int and initialize it to 0.
-For each character in the input string (from left to right):
* If the character is not 0 nor 1, return the null character (i.e., 0 cast to a char). *If the character is 1, calculate 2 to the power of the distance from the right end, and add the resulting value to result. (e.g., the bit 1 in the second from the right position index 6 contributes 2^(7-6) = 2).
- Cast the int value in result to a char and return it.
The results should look like this:
Enter an 8-bit value: 01010101
01010101: 'U'
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
