标签:after ddb for imp and number ring nbsp version
题目:
Implement a function that adds two numbers together and returns their sum in binary. The conversion can be done before, or after the addition.
The binary number returned should be a string.
答案:
// 1
function addBinary (a, b) {
return (a + b).toString(2);
}
// 2
function addBinary (a, b) {
return ((a + b) >>> 0).toString(2);
}
// 3
const addBinary = (a, b) => (a + b).toString(2);
标签:after ddb for imp and number ring nbsp version
原文地址:http://www.cnblogs.com/tong24/p/7306265.html