单项选择题

以下代码运行的结果是输出()
var a = b = 10;
(function(){
var a=b=20
})();
console.log(b);

A.10
B.20
C.报错
D.undefined