 Remember to use <a>**`Read-Search-Ask`**</a> if you get stuck. Try to pair program  and write your own code 
This problem is very straight forward, you will get a string that will represent a sentence in binary code, and you need to translate that into words. There is not a direct way to do this so you will have to translate twice.
Make sure that each time you transcode a character from binary to decimal, you reset whatever variable you used to keep track of the ones. Also do not forget to turn everything back into one string.
* For each of these binary strings, check for the ones and ignore the zeroes.
* For those that are one or active then convert them to decimal, this takes into account the position and the right power it needs to be raised to.
* Store the power into the **power** variable by adding it to any previous ones on the variable **decValue**. This variable will add and add the powers of the active ones until the end of the loop and then return the decimal number.
* Convert the final decimal outside of the inner loop and then convert it to ASCII and saving it to **sentence** along with any other text string already converted and stored.
* Reset the variable **decValue** to avoid getting wrong decimals before continuing to the outer loop.
* First we use `split()` to be able to work on each character as an Array element
* Then use `map()` to process each element from binary to decimal using `pareseInt()`
* Last we can use `String.fromCharCode()` to convert each ASCII number into the corresponding character
* However `fromCharCode()` expects a series of numbers rather than an Array! We can use ES6 Spread Operator to pass in an Array of numbers as individual numbers. See here for more info; <ahref='https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/Spread_operator'target='_blank'rel='nofollow'>Spread Operator</a>
##  NOTES FOR CONTRIBUTIONS:
*  **DO NOT** add solutions that are similar to any existing solutions. If you think it is **_similar but better_**, then try to merge (or replace) the existing similar solution.
* Add an explanation of your solution.
* Categorize the solution in one of the following categories — **Basic**, **Intermediate** and **Advanced**. 
* Please add your username only if you have added any **relevant main contents**. ( **_DO NOT_**_remove any existing usernames_)
> See  <a href='http://forum.freecodecamp.com/t/algorithm-article-template/14272' target='_blank' rel='nofollow'>**`Wiki Challenge Solution Template`**</a> for reference.