Implement function binarySum
which adds the transmitted binary numbers (as strings).
binarySum('10', '01'); // `11`
binarySum('1101', '101'); // '10010'
Implement function binarySum
which adds the transmitted binary numbers (as strings).
binarySum('10', '01'); // `11`
binarySum('1101', '101'); // '10010'