I have created a JavaScript program to convert a string into binary.
Input: StackOverflow
Output: 1010011 1110100 1100001 1100011 1101011
1001111 1110110 1100101 1110010 1100110
1101100 1101111 1110111
Now I want to convert that binary back into a string like below. Is there any possible way of doing this?
Input: 1010011 1110100 1100001 1100011 1101011
1001111 1110110 1100101 1110010 1100110
1101100 1101111 1110111
Output StackOverflow
Thanks