单项选择题

下面一段代码输出的是什么()?
var a =new Object();a.value =5;b =a;b.value=3;alert(a.value);

A.1
B.2
C.5
D.3