//使用parseInt方法,可以将字符串转换为数字,第二个参数为转换为多少进制
function base10(str) {
    return parseInt(str,2)
}