单项选择题

下列程序的输出是()。
var a = +('F123'), b;
if (a) {
b = true;
}
else {
b = false;
}
console.log(b)

A.undefined
B.TRUE
C.FALSE
D.null