Binary agents wont pass test

i have written an algorithm ad it works but it wont pass the either testh


function binaryAgent(str) {
const msg = str.split(" ").map(itm => parseInt(itm,2)).map(el => String.fromCharCode(el)).join('')
console.log(msg)
}

binaryAgent("01000001 01110010 01100101 01101110 00100111 01110100 00100000 01100010 01101111 01101110 01100110 01101001 01110010 01100101 01110011 00100000 01100110 01110101 01101110 00100001 00111111");

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36

Challenge: Binary Agents

Link to the challenge:

You forget to return msg

omg…lol,thanks alot i had to follow freecodecamp own solutions

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.