题解 | #二进制转换#

二进制转换

http://www.nowcoder.com/practice/4123561150114d119ba41f28219a454f

代码

function base10(str) {
    // 转为数组
    const strArr = str.split('');
    // 转换结果
    let result = 0;
    // 位数
    let i = 0;
    // 数组的末尾元素 * 2^i次方,结果累加到result
    while (strArr.length !== 0) {
        result += (strArr.pop() * Math.pow(2, i))
        i++;
    }

    return result;
}
全部评论

相关推荐

重生2012之我是java程序员:换个稍微正式点的照片吧
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务